Questions tagged as 'get'

1
answer

Show JSON with API from Angular 4

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...
asked by 23.07.2018 / 15:44
1
answer

Problem with $ _GET

*** 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...
asked by 26.07.2018 / 21:15
1
answer

Is it possible to pass a Json by GET? [closed]

I would like to know if it is possible to pass a JSON to GET ? and if possible, I would like to know how?     
asked by 29.06.2018 / 17:45
1
answer

VBA Get text fragment of an html element with id

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...
asked by 06.05.2018 / 22:36
2
answers

Mysql query from URL

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...
asked by 18.01.2018 / 18:18
1
answer

Get text entry tkinter

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")...
asked by 09.10.2017 / 06:58
1
answer

Returns incorrect value JAVA

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...
asked by 31.12.2018 / 19:35
0
answers

How to share a link with GET variables on facebook or whatsapp

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...
asked by 22.12.2018 / 23:19
0
answers

Get image from a server by Ajax

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...
asked by 19.12.2018 / 01:03
0
answers

How to do an internal search engine with the GET method?

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...
asked by 11.12.2018 / 18:47