moon - 2004-08-18

Logged In: YES
user_id=10715

create a function like this:
<?php
function file_get_contents($filename)
{
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
return $contents;
}
?>