Mixed-Mode Processing : Php Script « Language Basics « PHP
- PHP
- Language Basics
- Php Script
Mixed-Mode Processing
<?php
if ($logged_in = = true) {
print "Lots of stuff here";
print "Lots of stuff here";
print "Lots of stuff here";
print "Lots of stuff here";
print "Lots of stuff here";
}
?>
<?php
if ($logged_in = = true) {
?>
Lots of stuff here
Lots of stuff here
Lots of stuff here
Lots of stuff here
Lots of stuff here
<?php
}
?>
Related examples in the same category