I have a strange error
Under the below conditions I still get the else statement going.... even though the months and montht do not match...
Any ideas what I am doing wrong?
Thanks
$months = 01
$_REQUEST['montht']) = 02
$days = 03
$_REQUEST['dayt']) = 03
if (($months != $_REQUEST['montht'])&& ($days != $_REQUEST['dayt'])) {
echo "stuff happening";
}
else { echo "done" }