<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>19 Jun 2016 01:49:00 Z</lastBuildDate><pubDate>18 Jun 2016 12:53:00 Z</pubDate><description>Hello Gang!! What is the difference between these two codes??&#13;
============================================&#13;
sPostParameter is string = "name = Andy"&#13;
&#13;
IF HTTPRequest("www.mysite.com", "", "", sPostParameter) = True THEN&#13;
Info("Request OK, result:", HTMLToText(HTTPGetResult(httpResult)))&#13;
END&#13;
&#13;
==========================================&#13;
&#13;
HTTPCreateForm("FORM" )&#13;
HTTPAddParameter("FORM", "name", "Andy" )&#13;
&#13;
IF HTTPSendForm("FORM","www.mysite.com" ) = True THEN&#13;
Info("Request OK, result:", HTMLToText(HTTPGetResult(httpResult)))&#13;
END&#13;
&#13;
===========================================&#13;
&#13;
The first code doesnot work while the second code works correctly.&#13;
Any Idea?? Thanks</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem/read.awp</link><title>HTTPRequest problem</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58181/read.awp</comments><pubDate>19 Jun 2016 01:49:00 Z</pubDate><description>Thanks Fabrice !!&#13;
I guess in second code also Post mode is explicitely defined . because the default value is post mode . Furth…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58181/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58181/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem/read.awp">HTTPRequest problem</source><title>Re: HTTPRequest problem</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58180/read.awp</comments><pubDate>18 Jun 2016 20:46:00 Z</pubDate><description>Hi&#13;
&#13;
PostParameter is string = "name = Andy"&#13;
&#13;
name= andy is seen as 1 string with = in it.&#13;
&#13;
Try&#13;
&#13;
"Name" + " "+ "Andy"&#13;
&#13;
…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58180/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58180/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem/read.awp">HTTPRequest problem</source><title>Re: HTTPRequest problem</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58179/read.awp</comments><pubDate>18 Jun 2016 13:54:00 Z</pubDate><description>Hi&#13;
&#13;
in the first code, you are EXPLICITELY using the syntax requesting POST mode.&#13;
in the second you are not.&#13;
&#13;
Everything is…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58179/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem-58179/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58171-httprequest-problem/read.awp">HTTPRequest problem</source><title>Re: HTTPRequest problem</title></item></channel></rss>
