Jul 27th, 2010, 5:05 PM
Is there any way that I can initiate the second php script from the first one using the same post data that the first one uses? Is this a possibility?
Would this help me? Can I initiate the Form Tools from my initial PHP script? Will the post data carry over?
Would this help me? Can I initiate the Form Tools from my initial PHP script? Will the post data carry over?
Quote:<?php
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, "http://www.php.net");
curl_exec ($curl);
curl_close ($curl);
?>