I'm redoing some ASP pages into php, asp pages have things like:
A loop if something then
//show some html code
another loop, if something
//show some more code.
Can this be done in php?
so that i could do:
<?php
If $_SESSION['logon'] == "true" Then {
?>
<table border="0" cellpadding="0" cellspacing="0" width="100%" ...
and so forth?
Cheers
A loop if something then
//show some html code
another loop, if something
//show some more code.
Can this be done in php?
so that i could do:
<?php
If $_SESSION['logon'] == "true" Then {
?>
<table border="0" cellpadding="0" cellspacing="0" width="100%" ...
and so forth?
Cheers
Comment