View Single Post
Old 09-02-2008, 08:16 PM   #37 (permalink)
Ross
The Contributor
 
Ross's Avatar
 
Join Date: Jan 2008
Location: England, UK
Posts: 83
Thanks: 3
Ross is on a distinguished road
Default

PHP Code:
file_put_contents('error.html''<p>error\'d</p>');

$ch curl_init('error.html');
// explanatory line
curl_setopt($chCURLOPT_RETURN_TRANSFERfalse);
curl_exec($ch); 
Ross is offline  
Reply With Quote