Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php
  2. /*!
  3. * Operation High-Tension Syndrome
  4. * Administrator Dashboard Application
  5. *
  6. * Include Type: SQL_CONNECT
  7. * Connects to SQL Database.
  8. */
  9.  
  10. /*!
  11. * Section 1: Variable Setup
  12. * Copyright (C) 2016 Fujimoto Aiko Co., ltd.
  13. */
  14.  
  15. // Host name or address of SQL Server.
  16. // Example: 192.188.9.12 or localhost
  17. // Data Type: String
  18. $DatabaseHost = "localhost";
  19.  
  20. // Username of SQL Database.
  21. // Data Type: String
  22. $DatabaseUsername = "TakanashiRikka";
  23.  
  24. // Password of SQL Database.
  25. // Data Type: String
  26. $DatabasePassword = "TheWickedOneTakanashiRikka";
  27.  
  28. /*!
  29. * Section 2: Establish Connection to SQL Database.
  30. * Copyright (C) 2016 Fujimoto Aiko Co., Ltd.
  31. */
  32. $EstablishConnection = mysql_connect($DatabaseHost, $DatabaseUsername, $DatabasePassword);
  33. $ReachForTheStars = mysql_select_db("metrokorea", $EstablishConnection)
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement