Jump to content

How can i exclude a Town from the list of Towns!!!


npsari

Recommended Posts

I have a retreive code

 

$q = "SELECT DISTINCT Town FROM
ads
        ORDER BY Town ASC
LIMIT 12;";

$res = @mysql_query($q);

while($r = @mysql_fetch_array($res))
{	
echo "$r['Town']}";
}

 

It echos Town names

But I dont want the Town London to show

 

How can i do that

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.