Vijayaraghavan R wrote: > Hi, > I have developed an online form which is used by my company's marketing > staff. > When I try to enter the form I never get any errors and it gets saved > properly.
Could be a database error, maybe too many connections. Change the line echo '<p><font color="BLUE">ERROR !!! D W R NOT Saved !!! </font></p>'; to echo '<p><font color="BLUE">ERROR !!! D W R NOT Saved !!! <br />'.mysql_error().'</font></p>'; This will also output any errors from the database, if there are any. I would also suggest you check the Webserver and Database server's logs around the time of the reported errors to see if they contain a clue. -- John