Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $mysql_host = "your_host";
  4. $mysql_username = "your_username";
  5. $mysql_database = "your_database";
  6. $mysql_password = "your_password";
  7.  
  8. $pdo = new PDO("mysql:host=" . $mysql_host . ";dbname=" . $mysql_database, $mysql_username, $mysql_password);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement