not updating

Started by guitarzRus, April 04, 2023, 11:38:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

guitarzRus

Quote
This code is just to update the receiptno by adding 1 and displaying the value of receiptno.
The only prob, it does neither.?? says "updated but NOT

<?php
$link 
mysqli_connect("localhost""root""""homedb"); 
// Check connection
if($link === false){ die("ERROR: Could not connect. " mysqli_connect_error()); }

$id 'id';
$receiptno='';

/* Perform a query, check for error */
$sql "UPDATE control SET 
receiptno = '
$receiptno' + 1 where id='$id'";
echo 
$receiptno;
 if(
mysqli_query($link$sql)){ echo "updated"; } 
else { echo 
"ERROR: Could not able to execute $sql. " mysqli_error($link); }
 
// Close connection
mysqli_close($link); 
?>