Advertisement
Guest User

Untitled

a guest
Nov 19th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. <?php
  2. ## CONFIGURATION ###
  3. # MySQL Connection #
  4. $sql_host = "";
  5. $sql_username = "";
  6. $sql_password = "";
  7. $sql_dbname = "";
  8.  
  9. # Strings #
  10.  
  11. $select_game = "Select Game";
  12. $stat = "{game} stats!";
  13. $selectdisplay = "Select a Game to display stats!";
  14.  
  15. # Strings - Games #
  16.  
  17. $games = array();
  18.  
  19. $games["connect4"] = "Connect4";
  20. $games["fabulousfred"] = "FabolousFred";
  21. $games["hearthstone"] = "HearthStone";
  22. $games["mastermind"] = "MasterMind";
  23. $games["rockpaperscissors"] = "RockPaperScissors";
  24. $games["tictactoe"] = "TicTacToe";
  25. $games["uno"] = "UNO";
  26. $games["whackamole"] = "WhackAMole";
  27.  
  28. # Strings - Columns #
  29.  
  30. $columns = array();
  31. $columns["discsPlaced"] = "Discs Placed";
  32. $columns["purplePlaced"] = "Purple Placed";
  33. $columns["minionsDamage"] = "Minions Damage";
  34. $columns["lose"] = "Lose";
  35. $columns["GhastPlaced"] = "Ghast Placed";
  36. $columns["SilverfishPlaced"] = "Silverfish Placed";
  37. $columns["mobsSmashed"] = "Mobs Smashed";
  38. $columns["VillagerPlaced"] = "Villager Placed";
  39. $columns["WitherBossPlaced"] = "Wither Boss Placed";
  40. $columns["horizontalWins"] = "Horizontal Wins";
  41. $columns["rock"] = "Rock";
  42. $columns["coins"] = "Coins";
  43. $columns["timesPlayed"] = "Times Played";
  44. $columns["diagonalWins"] = "Diagonal Wins";
  45. $columns["CreeperPlaced"] = "Creeper Placed";
  46. $columns["songs"] = "Songs";
  47. $columns["bluePlaced"] = "Blue Placed";
  48. $columns["ZombieVillagerPlaced"] = "Zombie Villager Placed";
  49. $columns["linesCompleted"] = "Lines Completed";
  50. $columns["EnderDragonPlaced"] = "Ender Dragon Placed";
  51. $columns["paper"] = "Paper";
  52. $columns["IronGolemPlaced"] = "Iron Golem Placed";
  53. $columns["SnowmanPlaced"] = "Snowman Placed";
  54. $columns["EndermanPlaced"] = "Enderman Placed";
  55. $columns["ChickenPlaced"] = "Chicken Placed";
  56. $columns["SpiderPlaced"] = "Spider Placed";
  57. $columns["greenPlaced"] = "Green Placed";
  58. $columns["wins"] = "Wins";
  59. $columns["verticalWins"] = "Vertical Wins";
  60. $columns["SquidPlaced"] = "Squid Placed";
  61. $columns["skullsPlaced"] = "Skulls Placed";
  62. $columns["redPlaced"] = "Red Placed";
  63. $columns["player"] = "Player";
  64. $columns["green"] = "Green";
  65. $columns["totalDamage"] = "Total Damage";
  66. $columns["SkeletonPlaced"] = "Skeleton Placed";
  67. $columns["GuardianPlaced"] = "Guardian Placed";
  68. $columns["scissors"] = "Scissors";
  69. $columns["blue"] = "Blue";
  70. $columns["yellow"] = "Yellow";
  71. $columns["red"] = "Red";
  72. $columns["fails"] = "Fails";
  73. $columns["goodNotes"] = "Good Notes";
  74. $columns["playersDamage"] = "Players Damage";
  75. $columns["cardsPlaced"] = "Cards Placed";
  76. $columns["BlazePlaced"] = "Blaze Placed";
  77. $columns["yellowPlaced"] = "Yellow Placed";
  78. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement