I'm doing some error checking ... and am running into a question.
(Sorry - I'm learning).
I have typed the following:
[code]if (!is_integer($item_1_qty))
{
//qty is not a number
$redirect_to = 'order_form.php?error=1';
header("Location: $redirect_to");
exit();
}[/code]
I don't understand why my is_integer is black when I am expecting it to be blue. I am getting an error, and think this line has something to do with it.
Gin