Php How To Enter Data Into Database With Php Scripts
php how to enter data into database with php scripts
php, how, to, enter, data, into, database, with, php, scripts
Php How To Enter Data Into Database With Php Scripts
Post Description: php how to enter data into database with php scripts
POST# 1119
Posted On: Wed Apr 09, 2008 8:03 pm
webune hosting
Topic: Php How To Enter Data Into Database With Php Scripts
hello, thanks for visiting webune.com - we host to many websites with php and mysql service.

many of our customers are newbies wanting to learn how to create their own websites. so we created this tutorial on how you can use php and mysql and html to add dynamic webpages to your sites using database. so here we go with the guide:


Step 1



ok, i will give you a short tutorial...

In this example, lets say i want to collect data from a user. For the purpose of this tutorial guide, i only need the user's name and their email address. so i only need two text fields. one is user_name and the second one is user_email. so this is how the form would look like in HTML:

this is how the form will look like:



Name:

Email:







PHPCODE
<form method="post" action="">
Name:<br>
<input type="text" name="user_name">
<br>
Email: <br>
<input type="text" name="user_email">
<br><br>
<input type="submit" name="Submit" value="Submit">
</form>





STEP 2



the next step would be to have php check if the form has been submited or not. if the form has been submitted..

the way you can tell if a form has been submitted is to check if our submit button has a value.. if you look closely in our form html. i have this

HTML CODE
<input type="submit" name="Submit" value="Submit">


as you can see, the name of the submit button is called "Submit" so that the string variable name we can find out if its true or false. to check if the form is submitted i will use the if else operator in php

PHP CODE
if (isset($_REQUEST['Submit'])) {
// INSERT DATA FROM FORM ONCE THE FORM HAS BEEN SUBMITTED
} else {
// DISPLAY FORM IF FORM HAS NOT BEEN SUBMITTED
}





Step 3



ok, on step three, you will need to have the following information, if you dont have this information,,, you will not be able to continue on with this tutorial

  1. hostname (usually localhost)
  2. database user name (if you don't have this contact your host company)
  3. database user password (if you don't have this contact your host company)
  4. database name (if you don't have this contact your host company)
  5. database table name (you create this. you can create a table in phpmyadmin)


if you dont have all these requirements contact you webhosting company.

if you are a Webune customer, contact us and we will be glad to provide this information for you.




Step 4



the next step involves in us creating some tables in the mysql database.

so login to your database using phpmyadmin. if you are a webune customer, login to the control panel and click on the phpmyadmin link, you will need to login to the database in step 3.

once you are in phpmyadmin click on the SQL tab and copy and past this sql dump into the text area:

CREATE TABLE `user_info` (
`user_name` VARCHAR( 50 ) NOT NULL ,
`user_email` VARCHAR( 50 ) NOT NULL
);


this will create a table called user_info in your database, this is where we will enter the information from the form. as you can see, we created two fields, one called user_name and the other one called user_email



its should look something like this on your phpmyadmin
phpmyadmin snapshot




now its time to put the whole thing together.. we wrote up this simple script to show you how you can add. we made this script simple so that you can hack it, modify it or do whatever you want with it so you can practice and how how it all works. one this we ask is that please dont remove the www.webune.com link - we would appreciate it if you dont.

so open your favorite text editor. if you have windows like i do, im using windows xp, open a blank notepad and copy and paste the following php code into it:

webune.php
<?php
####################################################################
# THIS SCRIPT CREATED BY WWW.WEBUNE.COM
# PLEASE DONT ERASE THIS
###################################################################
####################################################################
################ DATABASE CONFIGURE ##############################
####################################################################
$hostname = "localhost"; // usually is localhost, but if not sure, check with your hosting company, if you are with webune leave as localhost
$db_user = "username"; // change to your database password
$db_password = "passwd"; // change to your database password
$database = "databse"; // provide your database name
$db_table = "user_info"; // leave this as is


# STOP HERE
####################################################################
# THIS CODE IS USED TO CONNECT TO THE MYSQL DATABASE
$db = mysql_connect($hostname, $db_user, $db_password);
mysql_select_db($database,$db);
?>
<html>
<head>
<title>How To Insert Data Into MySQL db using form in php</title>
</head>
<body>

<?php
if (isset($_REQUEST['Submit'])) {
# THIS CODE TELL MYSQL TO INSERT THE DATA FROM THE FORM INTO YOUR MYSQL TABLE
$sql = "INSERT INTO $db_table(user_name,user_email) values ('".mysql_real_escape_string(stripslashes($_REQUEST['user_name']))."','".mysql_real_escape_string(stripslashes($_REQUEST['user_email']))."')";
if($result = mysql_query($sql ,$db)) {
echo '<h1>Thank you</h1>Your information has been entered into our database<br><br><img src="http://www.webune.com/images/headers/default_logo.jpg"';
} else {
echo "ERROR: ".mysql_error();
}
} else {
?>
<h1>How To Insert Data Into MySQL db using form in php</h1>By <a href="http://www.webune.com">Webune.com</a><hr>
<form method="post" action="">
Name:<br>
<input type="text" name="user_name">
<br>
Email: <br>
<input type="text" name="user_email">
<br><br>
<input type="submit" name="Submit" value="Submit">
</form>
<?php
}
?>
</body>
</html>



Now make sure to change the mysql connections settings. so for example, i have these settings. NOTE: this are fake, so make sure to change them, otherwise, this script will error out because it cant connect to the database.

$hostname = "localhost";
$db_user = "webune_user";
$db_password = "mypassword";
$database = "database";
$db_table = "user_info";

as you can see on my example, my hostname is localhost
my database username is webune_user
the password for my database is mypassword my database is database
and my database table is user_info

so now that you have changed these setting to your database credentials, save the notepad file as webune.php

now upload to your php website and open it with your browser, enter the information and once you get a sucess message, the information was entered into the datase.



i tested and it works. if you are a webune customer, you should not have any problems, since this test is done on our servers

here is how the form looks like in my firefox browser when i open webune.php
webune-php

and when i submit the form with my name and email address i get this
mysql-form-submitted

now when i go to my phpmyadmin, i can confirm that the information i've entered on the form, was inserted into my database
phpmyadmin-insert.jpg


done..

i hope this helps you

remember if you need php web hosting

webune has the right service for you


Wed Apr 09, 2008 9:58 pm - Re: Php How To Enter Data Into Database With Php Scripts
1
hostman
Reply #1847
i tested and it works. if you are a webune customer, you should not have any problems, since this test is done on our servers
Sat May 10, 2008 10:55 pm - Re: Php How To Enter Data Into Database With Php Scripts
2
Rony
Reply #2026
Thanks for your tutorial. its very much helpful for all of us who fall on problem from php to database. thanks again for your this tutorial. i was searching this type of article from long time.
Wed May 21, 2008 7:38 am - Re: Php How To Enter Data Into Database With Php Scripts
3
devesh
Reply #2033
thanks for your tutorial..
these are the best..plz give me information if required further..
Sun Jun 22, 2008 4:38 am - Re: Php How To Enter Data Into Database With Php Scripts
4
manoj
Reply #2076
Why this error???


Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'admin'at 'localhost' (using password: YES) in /home/texaskuw/public_html/submit.php on line 19

Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /home/texaskuw/public_html/submit.php on line 20
How To Insert Data Into MySQL db using form in php
Sun Jun 22, 2008 5:06 am - Re: Php How To Enter Data Into Database With Php Scripts
5
Manoj
Reply #2077
Thank You Guys, Now it worked.. It was my silly mistake.. Am really happy to see my first data in the DB.. great buddy
Tue Jun 24, 2008 2:09 am - Re: Php How To Enter Data Into Database With Php Scripts
6
Manoj
Reply #2082
I want the confirmation message to be as a popup mesage inside a div element. Can anyone advise what changes to be done??


echo ????????.
Thu Jul 10, 2008 4:39 pm - Re: Php How To Enter Data Into Database With Php Scripts
7
baisakhi
Reply #2094
Thanks a bunch !!! it was a great help.
rgds
Thu Jul 24, 2008 1:20 am - Re: Php How To Enter Data Into Database With Php Scripts
8
Stan Fraser
Reply #2105
Found this very useful, what I would like to do is return automatically to the input form after data is submitted, how do I do that. Thanks and Regards
Mon Jul 28, 2008 7:24 pm - Re: Php How To Enter Data Into Database With Php Scripts
9
shafika
Reply #2109
Why this happen??
after i inserted all the data in the form..this was happen..
what should i do??
"ERROR: No database selected"
Thu Jul 31, 2008 1:43 pm - Re: Php How To Enter Data Into Database With Php Scripts
10
Web Hosting Support
Reply #2111
it just means that the script cannot connect to the database your provided, make sure you have provided the correct username and password

$hostname = "localhost";
$db_user = "webune_user";
$db_password = "mypassword";
$database = "database";
$db_table = "user_info";
Sun Aug 03, 2008 1:45 pm - Re: Php How To Enter Data Into Database With Php Scripts
11
eric
Reply #2114
I think I followed the instructions correctly but when I run the page in a browser I get this error stuff at the top of the page:

Warning: mysql_connect() [function.mysql-connect]: Lost connection to MySQL server at 'reading initial communication packet', system error: 113 in /data/17/1/106/141/1595793/user/1719441/ on line 28

Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /data/17/1/106/141/1595793/user/1719441/ on line 29

Any Ideas?
Mon Sep 08, 2008 6:08 pm - Re: Php How To Enter Data Into Database With Php Scripts
12
gandolf98
Reply #2136
Once I figured out what the php was doing and how I could adapt it, it works great.
Now is there a way for the PHP not only to place data in DB, but what code addition is needed to allow it to Mail the info to me and a responce "Thank You" letter to the person that filled out the form?
Thu Nov 06, 2008 8:41 pm - Re: Php How To Enter Data Into Database With Php Scripts
13
omkar
Reply #2169
hi friends it works fine but i got error

ERROR: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (46)

can u or anyone help me out it is very important to me
Thu Nov 06, 2008 9:26 pm - Re: Php How To Enter Data Into Database With Php Scripts
14
omkar
Reply #2171
hi
i am using web host there local host name
is mysql ur code is working but i am not able to see inserted data into my table that is thank you message comes but after that table does not show any record plz help
$hostname = "localhost";
$db_user = "webune_user";
$db_password = "mypassword";
$database = "database";
$db_table = "user_info";
Sun Nov 09, 2008 4:31 pm - Re: Php How To Enter Data Into Database With Php Scripts
15
abdul
Reply #2174
yes, thank you for teaching me how how to insert data from html form into mysql database
Sat May 23, 2009 3:54 am - Re: Php How To Enter Data Into Database With Php Scripts
16
Manick
Reply #2324
Hi, I have entering data html form to mysql table but if i save php file or refresh html page either 0 data has been saved or previous data has been saved.
I want only those data, which are enter by html form.
Kindly, tell about this.
Mon Jun 15, 2009 4:00 am - Re: Php How To Enter Data Into Database With Php Scripts
17
Manick
Reply #2332
Hi, I have done the above example, but data has been not entering the table.
im using
hostname = "localhost";
$db_user = "root";
$db_password = "";
$database = "database";
$db_table = "user_info";

What do you think?

* name:  

* email:  

* Please enter comments:


Receive Replies on my Comments
(An email will be sent to you when someone replies to your comments)

Add image to comments
yes no             upload
     
  1. Php How To Enter Data Into Database With Php Scripts
  2. Insert Data Into Mysql Table Using Html Form And Php Scripts
  3. I Cannot View My Entered Data At Phpmyadmin When I Done It As A Form
  4. How To Insert Popup Date Into Mysql Database Use HTML?