Re: [PHP] HTML file to a $var: Pls Help

2002-10-25 Thread Marco Tabini
Try this: implode ('', file ($filename)); On Fri, 2002-10-25 at 19:26, Shane wrote: Any way to plug an entire HTML file into a variable? I looked into file_get_contents() but that was CVS format only. I need to take a simple HTML file and pass it as a string variable to a mail function.

Re: [PHP] HTML file to a $var: Pls Help

2002-10-25 Thread @ Edwin
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

Re: [PHP] HTML file to a $var: Pls Help

2002-10-25 Thread eNetwizard Development Team
There is another way to do this also... ob_start(); readfile($file); $var = ob_get_contents(); ob_end_clean(); If you want to parse the file before inputting it into the variable, instead of using readfile() use something like: eval(require(\.$file.\););

RE: [PHP] HTML file to a $var: Pls Help

2002-10-25 Thread eNetwizard Developers Team
Hosting Services http://hosting.enetwizard.net/hosting.ehtml == -Original Message- From: @ Edwin [mailto:copperwalls;hotmail.com] Sent: Friday, October 25, 2002 11:06 PM To: Shane Cc: [EMAIL PROTECTED] Subject: Re: [PHP] HTML file to a $var