Okay...What I am trying to do is filter returned results from a MySQL select statement.
$sql = "SELECT * FROM checks WHERE id_user = '$id_user'";
$result = mysql_query($sql);
What I want to do is enable the user to filter results based upon a series of checkboxes. At the bottom of the printed check table I have those checkboxes which include: cashed,voided,deposits and all. If they select cashed I only want the cashed checks returned. If they select voided I only want the voided checks returned and so on. Each of these options has a column in a table of the database and is a Y or N option.