Can someone please help me?
I figured how you open pages with curl, but now, i want to be able to strip the top head, and </body></html> peace, and want to be able to change links within the page etc.
I figured how you open pages with curl, but now, i want to be able to strip the top head, and </body></html> peace, and want to be able to change links within the page etc.
Code:
<?php if(isset($_REQUEST['name'])) $num= $_REQUEST['name']; if(isset($_REQUEST['surname'])) $msg= $_REQUEST["surname"]; $Curl_Session = curl_init('http://example.com'); curl_setopt ($Curl_Session, CURLOPT_POSTFIELDS, "name=$name&surname=$surname"); curl_exec ($Curl_Session); curl_close ($Curl_Session); ?>
Comment