Global vars are turned off and you instructor needs to go back to
school.
Timothy Hitchens (HiTCHO)
Open Source Consulting
e-mail: [EMAIL PROTECTED]
-Original Message-
From: Rod D [mailto:[EMAIL PROTECTED]]
Sent: Monday, 20 January 2003 4:33 PM
To: [EMAIL PROTECTED]
Subject: [PHP
You are doing nothing wrong as such (Although some critics may claim its
sloppy coding, which personally i think is trash!). All that it is, is that
PHP is warning you that you are using a variable which does not have a value
assigned to it. Since this is from a form page, the most likely problem i
one thing is testing will always be a string in "double quotes"
These errors are showing up b/c you have error_reporting(E_ALL); set
essentially.
The script is working as it should. If you first set $testing = ""; or
$testing = null; this would work without the errors.
Hope this helps
Jeff