cyphix
10-18-2004, 10:18 AM
It seems to work, but do you think it's bad form to code in & out of php like this.....
<?php
if (1 == 1) {
?> // See we close off
1 IS equal to one!
<?php
} else {
// Hmmmmmm?
}
?>
What I'm getting @ is still having the if statement open when we close the PHP tags & then start playing around with again after re-opening the PHP tags.
<?php
if (1 == 1) {
?> // See we close off
1 IS equal to one!
<?php
} else {
// Hmmmmmm?
}
?>
What I'm getting @ is still having the if statement open when we close the PHP tags & then start playing around with again after re-opening the PHP tags.