My db table is like:
[id] [city] [temp] [cssstyle]
[1] [London] [10] [top:15px;left:5px]
[2] [Berlin] [10] []
[3] [Paris] [10] [top:15px;left:5px]
[4] [New York] [10] []
cssstyle is varchar(128)
Im trying to display only rows that have cssstyle with the below command:
mysql_query("SELECT * FROM cities WHERE cssstyle is not null")
but this is displaying all rows, i like to be displayed only London and Paris rows.
Thanks
NULL?