quote:
Originally posted by distorted
Fatal error: Call to undefined function: file_get_contents() in c:\apache\htdocs\sendinfo.php on line 23
What PHP version are you running? It must be ancient (2002 or earlier) if it doesn't have file_get_contents()...
To check the version, you can use
phpinfo().
If you want to fix the code Baggins posted, adding this line right before the first "fwrite" line should do the trick...
code:
rewind($handle);