Advertisement
Guest User

config.php

a guest
May 14th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. $host = "localhost";
  3. $userName = "yswrnbhsdp";
  4. $password = "YV8zsgd95q";
  5. $dbName = "yswrnbhsdp";
  6. // Create database connection
  7. $conn = new mysqli($host, $userName, $password, $dbName);
  8. // Check connection
  9. if ($conn->connect_error) {
  10. die("Connection failed: " . $conn->connect_error);
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement