Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function GetGamelist()
  2. {
  3. $con = InitializeDatabaseConnection();
  4. $retValue = array();
  5.  
  6. if($con)
  7. {
  8. $result = mysql_query("SELECT id, name, imagefolder FROM game ORDER BY name ASC", $con);
  9.  
  10. if(mysql_num_rows($result) > 0)
  11. {
  12. while($row = mysql_fetch_assoc($result))
  13. {
  14. $retValue[] = $row;
  15. }
  16. }
  17. }
  18.  
  19. return $retValue;
  20. }
Add Comment
Please, Sign In to add comment