Guest User

Untitled

a guest
Sep 19th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?php
  2.  
  3. // Database connection
  4. $host = "localhost";
  5. $username = "root";
  6. $password = "";
  7. $database = "velov2";
  8.  
  9. $connect = mysqli_connect($host, $username, $password, $database);
  10.  
  11. if (mysqli_connect_errno()) {
  12. echo "mysqli error: " . mysqli_connect_error();
  13. }
  14.  
  15. // Edit below
  16. $web_name = "Swoopie"; // Long name of the website
  17. $web_url = "Swoopie.xyz"; // Url of the website
  18. $web_desc = "Sit Down"; // Short description of the website
  19. $web_steam = "http://steamcommunity.com/id/easyx1999"; // Steam profile link
  20. $web_group = "http://steamcommunity.com/groups/VenomBot#members"; // Steam group link
  21.  
  22. $web = array($web_url, $web_desc, $web_name, $web_steam, $web_group); // Array for page titles
  23. ?>
Add Comment
Please, Sign In to add comment