Alright, so I am told that this error normaly has to do with missing brackets in an IF statement, or similar... I have examined, re-examined, manipulated, changed, and even rewritten this code, and I still get the same error. To me, it seems that all the brackets are there. Any ideas/suggestions?
<?
//convert Get Variables
$campaign = $_POST['campaign'];
$agent_id = $_POST['agent_id];
//Show the header file at the top of the document
include("header.html");
//Check For Erros in the Page
if((!$campaign) || (!$agent_id))
{
echo "<center><font color=red size=4>The Following Errors Occured:</font></center>";
if(!$agent_id)
{ echo "<center><font color=red size=4>You must enter your Agent ID</font></center>"; }
if(!$campaign)
{ echo "<center><font color=red size=4>You must select your campaign</font></center>"; }
include("campaign_form.html");
}
else
{ echo "<center><h1>Working Fine So Far</h1></center>"; }
?>