Re: Use Requests to send data to webpage - how?

2016-05-22 Thread TheDGuy via Digitalmars-d-learn
On Friday, 20 May 2016 at 14:42:19 UTC, TheDGuy wrote: On Friday, 20 May 2016 at 09:21:33 UTC, Kagamin wrote: Does this work? Request rq = Request(); Response rs = rq.exec!"GET"("http://somewebpage.org/";, [parameter:data]); No :( If i call my SQL.php function directly with: Response rs =

Re: Use Requests to send data to webpage - how?

2016-05-20 Thread TheDGuy via Digitalmars-d-learn
On Friday, 20 May 2016 at 09:21:33 UTC, Kagamin wrote: Does this work? Request rq = Request(); Response rs = rq.exec!"GET"("http://somewebpage.org/";, [parameter:data]); No :(

Re: Use Requests to send data to webpage - how?

2016-05-20 Thread Kagamin via Digitalmars-d-learn
Does this work? Request rq = Request(); Response rs = rq.exec!"GET"("http://somewebpage.org/";, [parameter:data]);

Re: Use Requests to send data to webpage - how?

2016-05-19 Thread Seb via Digitalmars-d-learn
On Thursday, 19 May 2016 at 19:28:46 UTC, TheDGuy wrote: Hi, i was sucessfull in installing requests and getting data from a webpage like this: Request rq = Request(); Response rs = rq.exec!"GET"("http://somewebpage.org/SQL.php";, ["action":"getTemp"]); But i am not able to send data to the

Use Requests to send data to webpage - how?

2016-05-19 Thread TheDGuy via Digitalmars-d-learn
Hi, i was sucessfull in installing requests and getting data from a webpage like this: Request rq = Request(); Response rs = rq.exec!"GET"("http://somewebpage.org/SQL.php";, ["action":"getTemp"]); But i am not able to send data to the webpage like this: Request rq = Request(); Response rs =