[snip]
> How should I display the page ... the page has a lot of html code and 
> trying to write echo "   blah  blah blah .....     ";
> will not be a an option. Please suggest a way out .

Use includes:
 http://www.php.net/include

And write HTML as HTML:

<h3>Greetings</h3>
<p>Hello <b><?php echo $username ?></b>, we hope you 
enjoy this webpage.</p>

Or a little heredoc:
 
http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

Regards,
Philip


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

Reply via email to