text search
Posted: Mon Aug 23, 2004 9:56 am
My queries so far have dealt with looking for an exactt text string in a given column:
How would I change this to use a text box and search the "Chapter" field for a string similar to or starting with the text entered?
Code: Select all
<?php
$query = ("select * from tbl_members where active!='No' and chapter='Chapter Name' AND unit='Lunch' order by 'category'");
?>