ok.. here is my problem I get the following error from the code. I cant fiqure out what is wrong with my code.
Parse error: parse error, unexpected T_ELSE in /home/hughraho/public_html/inc/order/1.php on line 37
PHP:
if ($plan=="");
{
$plan = $_POST['plan'];
}
if ($plan=="1");
{
$acctplan = "hughraho_starter";
$vplan = "Starter";
}
if ($plan=="2");
{
$acctplan = "hughraho_advanced";
$vplan = "Advanced";
}
if ($plan=="3");
{
$acctplan = "hughraho_professional";
$vplan = "Professional";
}else;{
$acctplan = "hughraho_error";
$vplan = "Error";
}





