is it possible to use a one line command to search a row of a table for a value?
can you be more specific
like say i have in my table a row that has values: thejoker, hehe, northgate, southgate, eastgate, westgate, castlewall. is there a query that can return if one of these words are in the row without knowing what the column name is?
you could try something like
$query = "select from tablename where tablename. = $whatevertosearchonvariable';";
didn't test, so don't know if that is even valid
nope... that doesnt work. so i just looped through the entire $row array to find the value. o well... i guess it works.