Hello,
I have a large table with names in upper and lower case. I would like to enter a name ($name) in any case and check it against the table name ($name_table). Currently, I have to type "Gary Kambic" to get a positive match against "Gary Kambic". I would like to be able to type "gary kambic" and get the same match.
How do I do this?
Thanks, Gary
while ($i < $num) {
$name_table = mysql_result($result,$i,"agent_name");
if ($name_table == $name) {
$status = "yes";
$i2 = $i;
$i = $num; }
else
++$i;
}