Linksys Classes PHP Introduction Insert data in mysql using PHP

Опубликовано: 02 Апрель 2026
на канале: Deepak Prajapati
468
9

This Video will help the students to enable their php knowledge to insert data in Mysql database using PHP Page in simple Language.

Here is the Sample PHP Code :
// connects with the database to to operations that user wants
mysql_connect('localhost','root','');
//selects the database where the queries will be executed
mysql_select_db('test');
if(isset($_POST['save']))
{
$name=$_POST['txtname'];
$email=$_POST['txtemail'];
$mobile=$_POST['txtmobile'];
// insert into student values(0,'','','')
$query="insert into student values(0,'$name','$email','$mobile')";
//echo $query;
if(mysql_query($query))
echo "Inserted Successfully";
}