Hello,
"Shane" <[EMAIL PROTECTED]> wrote:
> Any way to plug an entire HTML file into a variable?
>
> I looked into file_get_contents() but that was CVS format only.
>
True. But you can make your own. Something like this: --->
function file_get_contents($filename) {
$fp = @fopen($filename, "r");
if (!($fp)) {
return 0;
}
while (!feof($fp)) {
$temp .= fread($fp, 4096);
}
return $temp;
}
------------------------------------------------------------
That was from the manual:
http://www.php.net/manual/en/function.file-get-contents.php
Also, always check the "User Contributed Notes" for some good tips :)
HTH,
- E
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php