hello
my middle-east php friend
Try to change this, so you GET MySQL_error,
to see if mysql database can tell you what is wrong.
It might be your UPDATE query, that does not work.
More how you can and should use mysql_error()
is here:
http://docs.php.net/mysql_error
Regards 🙂
halojoy - north europe = Sweden!
<?php
$result = mysql_query($sql)
or die ( "Could not update your information
becouse of either Syntax error or a database problem ?!" );
// Change to this:
$result = mysql_query($sql)
or die ( "Could not update:<br />" . mysql_error() );
?>