Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. $con=mysql_connect("localhost","root","");
  3. $db=mysql_select_db("pool");
  4.  
  5. $res1=mysql_query("SELECT * FROM buy ORDER BY value LIMIT 3 ");
  6.  
  7. while($r1=mysql_fetch_array($res1)){
  8. echo $r1['value'];
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement