Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.25 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>Game Idea Generator</title>
  6. </head>
  7.  
  8. <body>
  9. <p><?
  10.  
  11.  
  12.  
  13. $games = array(
  14. "Pikmin",
  15. "Mario",
  16. "Metroid",
  17. "Pokemon",
  18. "Final Fantasy Tactics",
  19. "Castlevania",
  20. "Call of Duty",
  21. "Grand Theft Auto",
  22. "Chrono Trigger",
  23. "Dear Esther",
  24. "Antichamber",
  25. "Closure",
  26. "The Stanley Parable",
  27. "Super Meat Boy",
  28. "140",
  29. "Spelunky",
  30. "Dark Souls",
  31. "The Legend of Zelda",
  32. "Majoras Mask",
  33. "Dota 2",
  34. "Portal",
  35. "Audiosurf",
  36. "Amnesia",
  37. "Minecraft",
  38. "Diablo",
  39. "Starcraft",
  40. "Bioshock",
  41. "Half-Life 2",
  42. "Half-Life 3",
  43. "Cookie Clicker",
  44. "Candy Box",
  45. "Terrarria",
  46. "Wii Sports",
  47. "Cooking Mama",
  48. "Castle Crashers",
  49. "Borderlands",
  50. "Counter-Strike",
  51. "Left 4 Dead",
  52. "Passage",
  53. "Train",
  54. "Don't Starve",
  55. "Garry's Mod",
  56. "Billy Hatcher and the Giant Egg",
  57. "Sonic the Hedgehog",
  58. "Gone Home",
  59. "Payday 2",
  60. "Mirror's Edge",
  61. "Rayman Legends",
  62. "Curiosity: What's inside the Cube?",
  63. "SpaceChem",
  64. "Team Fortress 2",
  65. "VVVVVV",
  66. "Super Hexagon",
  67. "The Binding of Isaac",
  68. "Goldeneye",
  69. "Skyrim",
  70. "World of Warcraft",
  71. "The Last of Us",
  72. "Animal Crossing",
  73. "Super Smash Bros",
  74. "Spyro the Dragon",
  75. "Octodad",
  76. "Halo",
  77. "Sneak King",
  78. "Boogerman",
  79. "Insector X",
  80. "Contra",
  81. "Battletoads",
  82. "Bubble Bobble",
  83. "Street Fighter",
  84. "Fire Emblem",
  85. "Tamagotchi",
  86. "Mass Effect",
  87. "Proteus",
  88. "Offspring Fling",
  89. "Towerfall",
  90. "Dig Dug",
  91. "Pac-Man",
  92. "Galaga",
  93. "Adventure",
  94. "Pong",
  95. "Breakout",
  96. "Myst",
  97. "Braid",
  98. "Mega Man",
  99. "SimCity",
  100. "Civilization",
  101. "The Sims",
  102. "Pinball",
  103. "Chess",
  104. "Stick Ball",
  105. "Roshambo",
  106. "Angry Birds",
  107. "Sworcery"
  108. );
  109.  
  110.  $variations = array(
  111.  " but more like Dark Souls.",
  112.  " but as a roguelike.",
  113.  " but more like Dark Souls and as a roguelike.");
  114.  
  115.  echo "Video Game Idea Generator: <br>";
  116.  
  117. $item = rand(0, sizeof($games)-1);
  118. $variation = rand(0, sizeof($variations)-1);
  119.  
  120. echo $games[$item];
  121. echo $variations[$variation];
  122.  
  123. ?>
  124. </p>
  125. <p>&nbsp;</p>
  126. <p><a href="http://www.glaielgames.com/ideas/">
  127. <input type="submit" name="Submit" id="button" value="Another Idea" />
  128. </a></p>
  129. </body>
  130. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement