|
Posted by arturo.valencia on 09/29/05 10:41
Hello
If you check the documentation in http://jp2.php.net/file_get_contents
, you will notice that the function that you are using returns a string
, and as the documentation explains the content of your file is inside
the returned string
string file_get_contents ( string filename [, bool use_include_path [,
resource context [, int offset [, int maxlen]]]] )
so you have to do something like:
$email_file_content = file_get_contents("email.html");
print $email_file_content;
regards
Arturo Valencia Milian
Navigation:
[Reply to this message]
|