Jump to content

[SOLVED] Need help with comparing LIKE results


pneudralics

Recommended Posts

Having issues with my if and else statment. I'm not sure if I'm comparing them correctly. When I submit a name I want to check the database if the database has similiar names. If there are less names than zero I want to echo zero. Am I writing it correctly?

 

Thanks

 

$name = strip_tags(htmlentities(trim($_POST['name'])));
$namesq = "SELECT * FROM names WHERE name LIKE '%$name%'";

if ($namesr = mysql_query ($namesq)) {
while ($namesrow = mysql_fetch_array ($namesr)) {
$name = $namesrow['name'];
}
}

//if zero result echo zero
if ($name < 0) {
echo "zero";
}
//else if more than zero result echo found
else {
echo "found";
}

Link to comment
Share on other sites

I have tidied this up for you

<?php
if(!$result = mysql_query("SELECT name FROM names WHERE name LIKE '%".mysql_real_escape_string(strip_tags(trim($_POST['name'])))."%'")) {
die(mysql_error());
}
$names = array();
while($row = mysql_fetch_array($result)) {
// add each name to the $names array
$names[] = $row['name'];
}
echo (count($names) ? "Results Found" : "No Results Found") ;
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.