Advertisement
Guest User

Untitled

a guest
Mar 10th, 2019
951
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $servername = "localhost";
  3. $username = "username";
  4. $password = "password";
  5. $database = "database";
  6.  
  7. try {
  8. $conn = new PDO("mysql:host=$servername;dbname=$database", $username, $password);
  9. // set the PDO error mode to exception
  10. $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  11. echo "Connected successfully";
  12. } catch(PDOException $e) {
  13. echo "Connection failed: " . $e->getMessage();
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement