Skip to content

Commit aa0d8dc

Browse files
authored
Create PHPConnectMySQL.php
0 parents  commit aa0d8dc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

PHPConnectMySQL.php

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
$servername = "localhost";
3+
$username = "root";
4+
$password = "AwuxF7gzfvzY";
5+
6+
try {
7+
$conn = new PDO("mysql:host=$servername;dbname=essai", $username, $password);
8+
// set the PDO error mode to exception
9+
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
10+
echo "Connected successfully";
11+
}
12+
catch(PDOException $e)
13+
{
14+
echo "Connection failed: " . $e->getMessage();
15+
}
16+
?>

0 commit comments

Comments
 (0)