Do *NOT* get into the habit of outputting your HTML using echo or print
statements, it becomes unmaintainable very quickly, use a templating
language, ether with a framework(recomended) or standalone.

You should learn the basics of HTML and CSS, go and read
http://htmldog.com/, btw to add a newline you need to use "<br />".

>> 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
>
>


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

Reply via email to