I have a small problem and since I am very new to all this stuff, I was not successful on googling it, because I dont know the exact definitions for what I am looking for.>
$result = mysql_query("SELECT * FROM ... WHERE 1=1"); while($row = mysql_fetch_array($result)){ /*This will loop arround all the Table*/ if($row['id'] == 2){ /*You can filtere here*/ } echo $row['id']. " - ". $row['name']; echo ""; }