I have a query:
$sql=mysql_query("update bookings set status=0,placed=0 where id=$booking");
This is the only query where status=0 is mentioned. Now I have a customer that says that the booking has been cancelled (status=0) without her pressing the button 'cancel booking'.
I would say she is lying except that placed is not set to 0 which would have been the case if she had pressed the button. Is there any way that a table can be updated without a query telling it to update?
or can a query, without mentioning 'status' still affect that column? I'm totally confused.
Regards
Peder