Answers for "write php script to update records in table of mysql database."

SQL
0

php mysql update all rows in table new values

$idresult = $conn->query("SELECT id FROM pictures");

while ($row = $idresult->fetch_assoc()){
   mysqli_query($conn, "UPDATE pictures SET UniqueKey = '$UniqueKey' WHERE id = " . $row['id'];
}
Posted by: Guest on December-31-2020
0

updating a row from databse using php

// ... 

if (isset($_POST['update'])) {
	$id = $_POST['id'];
	$name = $_POST['name'];
	$address = $_POST['address'];

	mysqli_query($db, "UPDATE info SET name='$name', address='$address' WHERE id=$id");
	$_SESSION['message'] = "Address updated!"; 
	header('location: index.php');
}
Posted by: Guest on January-24-2021

Code answers related to "write php script to update records in table of mysql database."

Code answers related to "SQL"

Browse Popular Code Answers by Language