I have this if statement I will give example
Code: Select all
<?php if($settings['field']=='TRUE') { ?>
SHOW THIS
<?php
} else { ?>
SHOW THIS
<?php } ?>
Now that is on page1.php
what i need to do is make a new page and put that on a page by itself
so on page1.php i would do a include pgwiif.php
but that closeing bracket of the if needs to be on page1.php while the rest is on the other page how can i do this without getting an error
hope this makes since.
Thanks