ethan6 Posted July 27, 2009 Share Posted July 27, 2009 here's the code, any ideas why it doesn't work? you can see it at http://myipodbroke.com/ADMIN-database.php <form action="ADMIN-database.php" method="post"> First Name: <input type="text" name="fname"><br> Last Name: <input type="text" name="lname"><br> Phone: <input type="text" name="address1"><br> Mobile: <input type="text" name="address2"><br> Fax: <input type="text" name="city"><br> E-mail: <input type="text" name="state"><br> Web: <input type="text" name="zip"><br> Web: <input type="text" name="sendemail"><br> Web: <input type="text" name="phone"><br> Web: <input type="text" name="refer"><br> Web: <input type="text" name="refer2"><br> Web: <input type="text" name="generation"><br> Web: <input type="text" name="promo"><br> Web: <input type="text" name="problems"><br> <input type="Submit"> </form> <?php $username = "user"; $password = "pass"; $hostname = "localhost"; $database = "database"; mysql_connect($hostname, $username, $password) or die("Unable to connect to database."); mysql_select_db($database) or die("Could not select myipodbr_ipodusers"); $query="CREATE TABLE contacts (id int(6) NOT NULL auto_increment, fname varchar(15) NOT NULL, lname varchar(15) NOT NULL, address1 varchar(20) NOT NULL, address2 varchar(20) NOT NULL, city varchar(20) NOT NULL, state varchar(10) NOT NULL, zip varchar(10) NOT NULL, sendemail varchar(20) NOT NULL, phone varchar(20) NOT NULL, refer varchar(20) NOT NULL, refer2 varchar(20) NOT NULL, generation varchar(20) NOT NULL, promo varchar(20) NOT NULL, problems varchar(20) NOT NULL, PRIMARY KEY (id), UNIQUE id (id), KEY id_2 (id))"; mysql_query($query); $query = "INSERT INTO contacts VALUES ('','$fname','$lname','$address1','$address2','$city','$state','$zip','$sendemail','$phone','$refer','$refer2','$generation','$promo','$problems')"; mysql_query($query); $query="SELECT * FROM contacts"; $result=mysql_query($query); $num=mysql_numrows($result); echo "<b><center>Database Output</center></b><br><br>"; $i=0; while ($i < $num) { $id=mysql_result($result,$i,"id"); $fname=mysql_result($result,$i,"fname"); $lname=mysql_result($result,$i,"lname"); $address1=mysql_result($result,$i,"address1"); $address2=mysql_result($result,$i,"address2"); $city=mysql_result($result,$i,"city"); $state=mysql_result($result,$i,"state"); $zip=mysql_result($result,$i,"zip"); $sendemail=mysql_result($result,$i,"sendemail"); $phone=mysql_result($result,$i,"phone"); $refer=mysql_result($result,$i,"refer"); $refer2=mysql_result($result,$i,"refer2"); $generation=mysql_result($result,$i,"generation"); $promo=mysql_result($result,$i,"promo"); $problems=mysql_result($result,$i,"problems"); echo "<b>$id</b><br> <b>$fname $lname</b><br> $address1<br> $address2<br> $city $state $zip<br> $sendemail<br> $phone<br> $refer $refer2<br> $generation<br> $promo<br> $problems<br> <hr><br>"; $i++; } mysql_close(); ?> Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/ Share on other sites More sharing options...
irvieto Posted July 27, 2009 Share Posted July 27, 2009 where are you catching $_POST values? e.g. $my_val = $_POST['some_field']; Also, avoid the use of mysql_result. use one mysql_fetch_array call. Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884226 Share on other sites More sharing options...
ethan6 Posted July 27, 2009 Author Share Posted July 27, 2009 Ok I did some changes (i had forgotten to add the POST, but it's there now and still doens't seem to add to database): <form action="ADMIN-database2.php" method="post"> First Name: <input type="text" name="fname"><br> Last Name: <input type="text" name="lname"><br> <input type="submit"> </form> <?php $fname = $_POST['fname']; $lname = $_POST['lname']; $username = "username"; $password = "pass"; $hostname = "localhost"; $database = "database"; mysql_connect($hostname, $username, $password) or die("Unable to connect to database."); mysql_select_db($database) or die("Could not select myipodbr_ipodusers"); $query="CREATE TABLE contacts (id int(6) NOT NULL auto_increment, fname varchar(15) NOT NULL, lname varchar(15) NOT NULL, PRIMARY KEY (id), UNIQUE id (id), KEY id_2 (id))"; mysql_query($query); $query = "INSERT INTO contacts (fname, lname) VALUES ('','$fname','$lname')"; mysql_query($query); $query="SELECT * FROM contacts"; $result=mysql_query($query) or die(mysql_error()); echo "<b><center>Database Output</center></b><br><br>"; while ($row = mysql_fetch_assoc($result)) { echo "<b>{$row['fname']} {$row['lname']}</b><br>"; } mysql_close(); ?> Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884238 Share on other sites More sharing options...
gevans Posted July 27, 2009 Share Posted July 27, 2009 1. You're script is trying to run the database portion everytime (even when you just load the page and only want the form) 2. You don't secure your input 3. You attempt to create a new db table everytime the page loads 4. You're insert query is wrong. "INSERT INTO contacts (fname, lname) VALUES ('','$fname','$lname')" should be "INSERT INTO contacts (fname, lname) VALUES ('$fname','$lname')" 5. No need to close the db connetion at the end of the script. Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884243 Share on other sites More sharing options...
CodeMama Posted July 27, 2009 Share Posted July 27, 2009 I found that so many times when my inserts didn't work it was due to having a fieldname out of order, you have to put all the info in there exactly as they are laid out in the table like if it's name, dob, address you can't do dob, name, address on the insert... Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884244 Share on other sites More sharing options...
gevans Posted July 27, 2009 Share Posted July 27, 2009 I found that so many times when my inserts didn't work it was due to having a fieldname out of order, you have to put all the info in there exactly as they are laid out in the table like if it's name, dob, address you can't do dob, name, address on the insert... You can put them in any order as long as the required fields are there Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884247 Share on other sites More sharing options...
ethan6 Posted July 27, 2009 Author Share Posted July 27, 2009 i think i figured it out.. i just went through my code and cleaned it up. thanks for the help Quote Link to comment https://forums.phpfreaks.com/topic/167658-solved-simple-php-entry-of-data-into-sql-database-why-doesnt-it-work/#findComment-884254 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.