> I want to read a pure html file into a php-generated html file.
> print(readfile("somefile.html"));
> How do I get rid of the filelength statement?
> Messes up the page.

Your error is using the print(). You just want readfile("file") without
the print. Readfile() returns the number of bytes read, which you are in
turn printing out... so if you don't want it, stop doing it. :)

You could use include(), too...

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to