Jump to content

allowed?


seprulez

Recommended Posts

let me make it more clear....i have a form in a html file which takes me to the php file on submitting....now from this php file i want to execute the cgi file which will use the post data from the html file..

 

hope that made sense....sorry if my question is dumb....ive just started using php...thanks

Link to comment
https://forums.phpfreaks.com/topic/86137-allowed/#findComment-439893
Share on other sites

This probably isnt the best way to do it, but it should work:

       foreach ($_POST as $value)
       	{
       	$string .= "&" . $value;
       	}
       	include("http://somedir/afile.cgi?" . trim($string,"&"));

Not entirely sure how the values are seperated, but change the & sign accordingly.

 

Not sure if you can use include for this though. You might have to use file_get_contents or cURL.

Link to comment
https://forums.phpfreaks.com/topic/86137-allowed/#findComment-439899
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.