In the second example you are enclosing field values
with ticks ` instead of single quotes '
You don't get any errors because you don't check for errors,
if you put :
echo mysql_error();
after mysql_query () you will see the error.
To solve this problem simple replace ticks enclosing values
Brian E Boothe wrote:
i have two php Forms to insert data into a Mysql 4.0.20d Database, one
is just a simple form to test if it works the other is the Actual
application,
here is the test form and works Perfectly
>>
NOW , / here is the Form data submitter that doesn't Work Iv