Advertisement
hungvb

Config

Oct 23rd, 2021
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. $servername     = "localhost";
  3. $username       = "root";
  4. $password       = "";
  5. $database       = "DATABASE_NAME";
  6. $conn = new mysqli($servername, $username, $password, $database);
  7. if ($conn->connect_error) {
  8.     die("Connection failed: " . $conn->connect_error);
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement