> I am able to get the query to work by itself but it will not work using
> the if (isset ($submit)) and NO errors are outputting...nothing.  

That's because $submit is not set....
 
> Any suggestions would be greatly appreciated.  I havnt even gotten to
> the form variables yet...and yes, my globals are turned on (at least for
> now).  Are there error display holes that I have missed?
> 
> What am I doing wrong ???...
[snip]
> <input type="submit" value="Submit">

Name your form element, so $submit will be set.

<input type="submit" name="submit" value="Submit">

---John Holmes...

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to