I try to show my Object from a GET service but I can only see [Object] [object].
Service:
return this.http.get('http://localhost:3000/words').map((res: Response) => res.json());
Controller:
export class WordsComponent implements OnI...
*** I have the following PHP file to connect to a database in MySQL:
Connection.php
<?php
$Link = 'mysql:host=localhost;dbname=yt_colores';
$Usuario = 'root';
$Password = 'root';
try{
$PDO = new PDO($Link, $Usuario, $Password);
} catch...
I am trying to access a web page with a macro in Excel, enter a code in an input, press a button and copy the price resulting from the search. It is this last step that I do not achieve. The element that contains the price has the id #result_ok...
Basically what I want to do is a query to MySQL with PHP and bring the results of the row specified in the URL.
For example, my URL is this: link
Then the query brings the results of the row that contains that nick (the nickname is unique, i...
I want the text that I enter in the window entry, after clicking on start, I will return it in this variable:
d = (Inventory_data.get ("Inventory_data")). get ("texto introducido")
Code:
ventana = Tk()
ventana.geometry("500x300+100+100")...
I mention my doubt, beforehand saying that I am starting with Java and I am practicing with the methods, I come from another language also oriented to objects but also to very low level.
My question or mistake is the following, I am, as a hob...
How to share the current link (with its get parameters) with the whatsapp app making me recognize all the variables.
This is what happens: I can not share more than one variable with whatsapp because it adds these special characters:
link...
I have the following code:
$.ajax({
url: urls,
type: "GET",
beforeSend: function(req) {
req.setRequestHeader("Accept", "text/plain");
}
}).done(function(data, textStatus, jqXHR ) {
console.log(data);
});
I d...
I need you to please show me a simple example of an internal search engine. But seriously a very simple example, let's say minimalist, just to know the basic principles when building a search engine ... I'm trying it with the GET method, like go...