Advertisement
Guest User

Untitled

a guest
Jan 7th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. include'config.php';
  3.  
  4.  
  5. $res=mysql_query("select * from userreview");
  6.  
  7. $i=0;
  8.  
  9. while($result=mysql_fetch_row($res))
  10. {
  11.  
  12.  
  13. $data[$i]=array("username"=>$result[0],"comment"=>$result[1]);
  14.  
  15. $i++;
  16. }
  17.  
  18. echo json_encode($data);
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement