I was wondering, how using INET, I would send a Requested piece of information to the php script.
Example:
$msg= $_REQUEST['msg']
How do I send that requested "msg" to the php script?
Request variables are placed in the request data by the client browser. Use your favorite client-side scripting language to insert variables in the request data.
P.S. This should be in Web Development forum.
Sorry, it was for my bot...I was wondering where I might post it.
I'm a little new at php, I guess I should've mentioned that aswell.
Thnx for the support, I'll give it a whirl.
+ 1 to Grok. This post is related to bot development soo much!
Actually, it was but whatever.
I'm still trying to figure out how to send the requested info to the php script, using INET.
Inet1.Execute "URL", "POST", msg?
what is your site url for the php script, perhaps we can figure this out if we had more info.
Probably the easiest way to do it would be to include the information in the URL, like so:
page.php?msg=whatever
Then query the $_GET array in your php script (page.php) to retrieve the data.
I FIGURED OUT, no more posts are necessary, cept for maybe this one.
Finally
...you're welcome.