Hi! I have a list of names for members and i wanted to have a search page where i can look up if the company is listed or not. Can anybody give me some help how to do this?
are u using PHP,
is the info stored in the database table. if yes use a select command which does that.
or else send me a mail
kalyan
You Can Try This
<? $category = "what)there_searching_for";
$SQL = " SELECT * FROM yourdatabase "; $SQL = $SQL . " WHERE category = $'category' "; ?>
Thats the snippet of code from the search engine I created, where people can search by category.