Can anyone point out whay exactly the below script won't quite work?
The Journey of a Thousand Miles Begins with the First Step...
Code:
<?
$custype=$_POST['custype'];
$ccustype = addslashes($myrow["custype"]);
if ($ccustype = P )
{
include("includes/leftnv_cpanelinclude.php");
}
else if ($ccustype = A )
{
include("includes/leftnv_cpanelinclude_a.php");
}
?>
The Journey of a Thousand Miles Begins with the First Step...