how would I get some thing like this to work
$search=$_POST["search"] or $_GET["search"];
hmmm that doesn't work?
try this one
$search = (isset($_POST['search'])?$_POST['search']:$_GET['search']);
but the $search var should already contain the value in either POST or GET
Thanks that worked great!!!
Tim