I am using the print function to display my html. I cannot get the
line return ( \n ) character to actually push the html onto the next
line, it just gets displayed instead. Should I be using echo?
Allen, you off and running again?
echo "blah.. \n"; //<-- this will print the literal 'blah.. ' and
then a newline into your HTML *source code*
echo 'blah.. \n'; //<-- this will print the literal 'blah.. \n' into
your HTML *source code*
IIRC print is the same as echo. That is not your apparent issue.
Say if you are stuck again, and on what exactly.
-John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php