Well, your HTML is screwed up so it might be hiding the results.
Code:
$query = mysql_query("SELECT * FROM clients WHERE $metode LIKE '%$search%' LIMIT 0, 50");
Try changing that to this:
Code:
$q_str = "SELECT * FROM clients WHERE $metode LIKE '%$search%' LIMIT 0, 50";
print ($q_str);
$query = mysql_query($q_str);
Then you can see what query is actually being sent to MySQL.
I don't see where you defined $metode, so that's probably causing a problem. I'm no PHP guy, but I think you'd want to look it up with $_POST["metode"].
Further, you'll need to take steps to prevent SQL injection. $metode is easy, verify that it's equal to one of the proper values. $search needs to have double quotes and search characters escaped.