PHP MySQL Update Data

Using MySQLi and PDO to change the data in a MySQL table, here we learn using MySQLi

Update Data In a MySQL Table Using MySQL

The UPDATE statement is used to change information in records that are already in a table:

UPDATE name of table

SET column1=value, column2=value2,…
WHERE some_column=some_value

Notice that the UPDATE syntax has a WHERE clause: The WHERE clause tells the program which record or records to change. If you don\’t include the WHERE clause, all of the records will be changed!

Visit our SQL tutorial to learn more about SQL.

Let\’s look at the table named \”Student\”:

idfirstnamelastnameemail
1ramlalram@example.com
2shyamlalshyam@example.com

The following examples update the record with id=2 in the \”student\” table:

<?php
$servername = \”localhost\”;
$username = \”username\”;
$password = \”password\”;
$dbname = \”school\”;

// Create connection
$link = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$link) {
die(\”Connection failed: \” . mysqli_connect_error());
}

$sql = \”UPDATE student SET lastname=\’das\’ WHERE id=2\”;

if (mysqli_query($link, $sql)) {
echo \”Record updated successfully\”;
} else {
echo \”Error updating record: \” . mysqli_error($link);
}

mysqli_close($link);
?>

 

Output

idfirstnamelastnameemail
1ramlalram@example.com
2shyamdasshyam@example.com
Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more