SELECT Query
<?
  mysql_connect('localhost');
  mysql_select_db('foo');
  $result = mysql_query("select * from users");
  if(!$result) echo mysql_error();
  else {
    while($row = mysql_fetch_row($result)) {
        echo "$row[0] - $row[1] - $row[2] - $row[3] - $row[4]<br />\n";
    }
  }
?>
Output
\n"; } } ?>
mysql_fetch_array()
<?
  $result = mysql_query("select * from users order by id");
  if(!$result) echo mysql_error();
  else {
    while($row = mysql_fetch_array($result,MYSQL_ASSOC)) {
        echo "$row[id] - $row[Password] - $row[Name] - 
              $row[email] - $row[ts]<br />\n";
    }
  }
?>
Output
\n"; } } ?>