Php How To Enter Data Into Database With Php Scripts
RegisterLogin
Php How To Enter Data Into Database With Php Scripts
Post Description: Php How To Enter Data Into Database With Php Scripts
Tags: Php, How, To, Enter, Data, Into, Database, With, Php, Scripts
This Post Was Posted On Nov 13, 2009 By webune hosting #508
Post Description: Php How To Enter Data Into Database With Php Scripts
Tags: Php, How, To, Enter, Data, Into, Database, With, Php, Scripts
This Post Was Posted On Nov 13, 2009 By webune hosting #508
Php How To Enter Data Into Database With Php Scripts by webune hosting
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:
HTML FORM
<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>
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
}
// 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
- hostname (usually localhost)
- database user name (if you don't have this contact your host company)
- database user password (if you don't have this contact your host company)
- database name (if you don't have this contact your host company)
- 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
);
`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

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
####################################################################
# COPYRIGHT NOTICE:
# THIS SCRIPT CREATED BY WWW.WEBUNE.COM
# PLEASE DONT ERASE THIS
# Copyrights Webune.com
###################################################################
####################################################################
################ 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>
####################################################################
# COPYRIGHT NOTICE:
# THIS SCRIPT CREATED BY WWW.WEBUNE.COM
# PLEASE DONT ERASE THIS
# Copyrights Webune.com
###################################################################
####################################################################
################ 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

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

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

done..
i hope this helps you
remember if you need php web hosting
webune has the right service for you
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
tan
#5396 1
am experiencing an error that no database is selected while i did include one.
$hostname = "localhost";
$db_user = "root"; //
$db_password = ""; //
$database = "customer";
$db_table = "user_info";
where did i go wrong?
$hostname = "localhost";
$db_user = "root"; //
$db_password = ""; //
$database = "customer";
$db_table = "user_info";
where did i go wrong?
Aug 19, 2011 Reply Report abuse
james
#5391 2
ada ponga da
Aug 18, 2011 Reply Report abuse
nraji
#5381 3
thank you for your tutorial.
Aug 13, 2011 Reply Report abuse
Laura
#5362 4
i've been searching online for a very basic way to create input fields that fill out an online database. this was the first to really make sense and i got it to work with a little trial and error. thank you!
Aug 03, 2011 Reply Report abuse
samal
#5104 5
how to enter date of birth in database
May 13, 2011 Reply Report abuse
Bob
#4938 6
this was good, but i found it a bit confusing and way to much to take in, try and make it simpler!
Mar 23, 2011 Reply Report abuse
Rahima
#4820 7
thankyou for the tutorial.its working. i want to know how to enter the selected radio button details into the mysql daytabase.the textbox details are getting updated to my database but the radio button datas are not getting updated.
Feb 07, 2011 Reply Report abuse
jay&viru
#4454 8
your website wants more develope in future for easy learning for help.
Sep 19, 2010 Reply Report abuse
Kevin
#4398 9
thank you, but its not working. i'am not getting an error message, and the information is not going into the database.
Aug 30, 2010 Reply Report abuse
randy
#4227 10
i learned how to , but i got an error you guys saved me, i can do this now by myself
Jul 21, 2010 Reply Report abuse
harsha
#4144 11
its extra ordinary
Jul 10, 2010 Reply Report abuse
palupe
#3715 12
i can show you how does it know to enter values to database when we hit submit in php
Apr 05, 2010 Reply Report abuse
Karan
#3556 13
thanks.
it helped a lot.
it helped a lot.
Mar 03, 2010 Reply Report abuse
neximin
#3518 14
how to add the details from php input boxes to phpmyadmin database?
Feb 25, 2010 Reply Report abuse
anthoney
#2955 15
error: can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock' (2)
i keep getting this message
i keep getting this message
Dec 04, 2009 Reply Report abuse
View More Comments
Leave Your Comments...
©2012 Webune Forums - Wed Dec 12, 2012 8:58 pm
Powered by: Webune Forums V3
Powered by: Webune Forums V3