-
Notifications
You must be signed in to change notification settings - Fork 0
/
18 MySQL Connect.php
73 lines (57 loc) · 1.75 KB
/
18 MySQL Connect.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!-- PHP Connect to MySQL -->
<title>PHP Connect to MySQL</title>
<!-- There are two types of methods in PHP to connect MySQL database through backend
1. MySQLi extension (the 'i' stands for improved)
2. PDO (PHD Data Objects) -->
<?php
# = = = = = MySQLi Object-Oriented = = = = =
$serverName = "localhost";
$userName = "root";
$password = "";
// Create Connection
$conn = new mysqli($serverName, $userName, $password);
// Check Connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully<br>";
// Close Connection
#The connection will be closed automatically when the script ends. To close the connection before, use the following : -
$conn->close();
?>
<hr>
<?php
# = = = = = MySQLi Procedural = = = = =
$serverName = "localhost";
$userName = "root";
$password = "";
// Create Connection
$conn = mysqli_connect($serverName, $userName, $password);
// Check Connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
echo "Connected successfully<br>";
// Close Connection
#The connection will be closed automatically when the script ends. To close the connection before, use the following : -
mysqli_close($conn);
?>
<hr>
<?php
# = = = = = PDO = = = = =
$serverName = "localhost";
$userName = "root";
$password = "";
try {
$conn = new PDO("mysql:host=$serverName", $userName, $password);
// set the PDO error mode to exception
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "Connected successfully<br>";
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
// Close Connection
#The connection will be closed automatically when the script ends. To close the connection before, use the following : -
$conn = null;
?>
<hr>