-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
45 lines (39 loc) · 993 Bytes
/
index.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
<html>
<head>
<title>MySQL connect template</title>
</head>
<body>
<h1>MySQL connect template</h1>
<?php
// MySQL database credentials
$host = 'hostname';
$username = 'username';
$password = 'password';
$dbname = 'dbname';
try {
$dsn = "mysql:host=$host;dbname=$dbname";
$pdo = new PDO($dsn, $username, $password);
echo "Connected to the database successfully.";
// Retrieve data from the table
$sql = 'SELECT * FROM table_name';
$stmt = $pdo->query($sql);
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
// Output the data in the UI
if (count($result) > 0) {
echo '<table>';
echo '<tr><th>ID</th><th>Name</th>';
foreach ($result as $row) {
echo '<tr>';
echo '<td>' . $row . '</td>';
echo '</tr>';
}
echo '</table>';
} else {
echo 'No data found.';
}
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
?>
</body>
</html>