Posted: Tue Jun 15, 2004 8:22 am
Excellent!
You're getting that error because you're checking $_POST['q1'] for its value, while it isn't set (you didn't check the q1 checkbox).
Instead of checking the value, check if $_POST['q1'] is set first.
The same goes for q2 obviously.
You're getting that error because you're checking $_POST['q1'] for its value, while it isn't set (you didn't check the q1 checkbox).
Instead of checking the value, check if $_POST['q1'] is set first.
The same goes for q2 obviously.