Opposite to "LIKE" ?
Posted: Mon Jan 01, 2007 1:42 pm
Code: Select all
$sql = "SELECT * FROM hits WHERE therefer != '' AND therefer LIKE '%dalehay.com%' ORDER BY therefer ASC";A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$sql = "SELECT * FROM hits WHERE therefer != '' AND therefer LIKE '%dalehay.com%' ORDER BY therefer ASC";NOT LIKE?[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:1. Select the correct board for your query. Take some time to read the guidelines in the sticky topic.
Code: Select all
$sql = "SELECT * FROM hits WHERE therefer != '' AND therefer NOT LIKE '%dalehay.com%' ORDER BY therefer ASC";