07.10.2011, 00:13
WHERE `Pseudo` = '%d'
Its a name so '%s' as its an string, i guess you should check the difference between integers, float numbers and strings, aswell fix it on your database, it should be text or varchar(24) ( for the name).
Dont use ' ' for the integers do it only for strings, so it should be %d or %i instead of '%d'
btw
Float numbers 233.2123 (example) as %f
Character strings " Hello World!! " (example) as '%s', or '%e' if you wanna escape it using mysql_format(); instead of format();
and integers 1 or 98765 or 1983489 or 0 (examples) as %d or %i.
Its a name so '%s' as its an string, i guess you should check the difference between integers, float numbers and strings, aswell fix it on your database, it should be text or varchar(24) ( for the name).
Dont use ' ' for the integers do it only for strings, so it should be %d or %i instead of '%d'
btw
Float numbers 233.2123 (example) as %f
Character strings " Hello World!! " (example) as '%s', or '%e' if you wanna escape it using mysql_format(); instead of format();
and integers 1 or 98765 or 1983489 or 0 (examples) as %d or %i.