Posted by x.tardits@gmail.com on 12/05/06 11:17
Hi,
Firstly when you build a SQL query, You can update a NumberCasted
column using (column_name = 12345) but StringCasted column values in
update (and even in reading) must be quoted (column_name = 'abcd'). If
you don't do that your string ('b1' in your case) will be interpreted
as an expression that's probably the reason of your bug.
secondly try to use $_POST with quoted indexes, in this case it seam to
work as you did but you will encounter furthers problems with that...
Good Luck and sorry for my "frenchie english"
Xabi
[Back to original message]
|