Jump to content

sql search


garyneedham

Recommended Posts

Hi Everyone

 

I have the following search which works fine But I only want to bring back an exact match in the Nif field for example if I want to search for 123456 I only want to bring this one back and not 12345, 1234, 12 etc etc can anyone help

 

$sql = "SELECT * FROM Customer WHERE Nif Like '%" . mysql_escape_string($_GET['Nif']) . "%' ORDER BY Nif ";

if (empty($_GET['Nif']))

$sql = "SELECT * FROM Nif WHERE 1 = 2 ";

$res = mysql_query($sql);

 

?>

 

Please keep all replies very simple as I am very new to this

Link to comment
https://forums.phpfreaks.com/topic/229590-sql-search/
Share on other sites

I have the following search which works fine But I only want to bring back an exact match in the Nif field for example if I want to search for 123456 I only want to bring this one back and not 12345, 1234, 12 etc etc can anyone help

 

$sql = "SELECT * FROM Customer WHERE Nif Like '%" . mysql_escape_string($_GET['Nif']) . "%' ORDER BY Nif ";
if (empty($_GET['Nif']))
   $sql = "SELECT * FROM Nif WHERE 1 = 2 ";
$res = mysql_query($sql);

?>

 

Please keep all replies very simple as I am very new to this

 

 

Link to comment
https://forums.phpfreaks.com/topic/229590-sql-search/#findComment-1184488
Share on other sites

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.