Forum Moderators: coopster
I am selecting records from a MySQL database:
$query = "SELECT column1,column2,column3 FROM $my_database WHERE character='D'";
As expected, this picks up all records that have 'D' in the character column, however, it also picks up all records that have '' in the character column.
Character set problem maybe? (Currently set to 'latin1')
?
[edited by: Karma at 10:26 pm (utc) on April 26, 2007]