View Single Post
  #4 (permalink)  
Old 06-30-06, 12:25 PM
mab's Avatar
mab mab is offline
Community VIP
 
Join Date: Oct 2005
Location: Denver, Co. USA
Posts: 2,674
Thanks: 0
Thanked 0 Times in 0 Posts
UnrealEd: Hope you don't mind if I jump in here.

It appears that the $_POST variables are empty, probably due to a mismatch in the names used or some problem in the form code. If you post the form code it would help.

You can also add the following, right after the <? opening PHP tag, to get PHP to tell you more info about what is going on and to show you the actual POST variables -
PHP Code:

error_reporting(E_ALL); // show all notices, warnings, and errors

echo "<pre>";
print_r($_POST); // show the actual post variables
echo "</pre>"
__________________
Error checking, error reporting, and error recovery. If your code does not have these to get it to tell you why it is not working, what makes you think someone in a programming forum will be able to tell you why it is not working???
Reply With Quote