So basically what I have is
Code: Select all
</td>
</tr>
<tr>
<td height="25" align="center" colspan="2"><?php include("footer.html"); ?></td>
</tr>Moderator: General Moderators
Code: Select all
</td>
</tr>
<tr>
<td height="25" align="center" colspan="2"><?php include("footer.html"); ?></td>
</tr>Code: Select all
if($there_is_an_error)
{
echo 'Error Message';
require 'footer.php';
exit;
}Code: Select all
include "one.php";
include "two.php";
include "three.php";Code: Select all
<?php
$x = "blah";
$y = "bleh";
if ($x != $y) {
return; //Exit *just* this particular include
}