Hmmm .....
Direkt in mysql klappts:
Code:
mysql> select * from artikel;
+------+--------+
| id | bild |
+------+--------+
| 3 | text4 |
| 2 | text 2 |
+------+--------+
2 rows in set (0.00 sec)
mysql> update artikel set id='0', bild="text4" where ID='3';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from artikel;
+------+--------+
| id | bild |
+------+--------+
| 0 | text4 |
| 2 | text 2 |
+------+--------+
2 rows in set (0.00 sec)
Eventuell in einer Variablen noch ein Blank hinten oder so?