chrscollins Posted August 14, 2006 Share Posted August 14, 2006 I am writing a couple test programs to get familiar with php. Whenever I load the below code I get an error message. Here is the error [quote]Object not found!The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.If you think this is a server error, please contact the webmaster.Error 404127.0.0.108/13/06 20:56:58Apache/2.2.2 (Win32) DAV/2 mod_ssl/2.2.2 OpenSSL/0.9.8b mod_autoindex_color PHP/5.1.4 [/quote]Here is the code [code]<html><head> This is my test page</head><body><form action="insert.php" method="post">First Name: <input type="text" name="first"><br>Last Name: <input type="text" name="last"><br>Phone: <input type="text" name="phone"><br>Mobile: <input type="text" name="mobile"><br>Fax: <input type="text" name="fax"><br>E-mail: <input type="text" name="email"><br>Web: <input type="text" name="web"><br><input type="Submit"></form><?$first=$_POST['first'];$last=$_POST['last'];$phone=$_POST['phone'];$mobile=$_POST['mobile'];$fax=$_POST['fax'];$email=$_POST['email'];$web=$_POST['web'];$user="chris";$password="44322097";$database="test";mysql_connect(localhost,$username,$password);@mysql_select_db($database) or die( "Unable to select database");$query = "INSERT INTO contacts VALUES ('','$first','$last','$phone','$mobile','$fax','$email','$web')";mysql_query($query);mysql_close();?></body></html>[/code]Thank you Chris Collins Link to comment https://forums.phpfreaks.com/topic/17455-question-about-code/ Share on other sites More sharing options...
onthespot Posted August 14, 2006 Share Posted August 14, 2006 all i can see is that the url not found, is the "insert.php", you have the php on the same page rather than in insert.phpthat is the problem mate! Link to comment https://forums.phpfreaks.com/topic/17455-question-about-code/#findComment-74276 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.