Advertisement
CaptainLepidus

PHP SQL

Apr 2nd, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. $sql="SELECT * FROM TABLE";
  2. $result=mysql_query($sql);
  3. while($row=mysql_fetch_array($result))
  4. {
  5. echo $row["ROW_ON_TABLE"];
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement