When I update a field in a DB row I break down any images I may have in this row.
Thank you
Pepe-Spain
How are you doing your update?
$sql->Insert("update ITEMS set description='$description' where description='$description'");
That sql doesn't make any sense. Your setting description equal to the variable where it's already equal to the variable??? what are you trying to do?
---John Holmes...
The variable $description comes from a form where I input a value, this value is sent to the table Items and description column will change its value. Uffffff.
Pepe