-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
85 lines (65 loc) · 2.49 KB
/
notes.txt
File metadata and controls
85 lines (65 loc) · 2.49 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
1. Aesthetic & Surgical Services
This category focuses on enhancing appearance and providing specialized surgical procedures that improve physical features and treat certain conditions.
2. Medical & Diagnostic Services
This category includes general health services and diagnostics to support overall well-being and address specific medical needs.
:
:
:
:
3. Fertility & Reproductive Health
This category focuses on reproductive health and fertility treatments, as well as dental services to support overall oral health.
:
:
:
150,000+ Happy Patients Served
99% Patient Satisfaction Rate
85,000+ Followers Across Social Media
500+ Successful Fertility Treatments Every Year
1,200+ Aesthetic Procedures Performed Annually
10+ State-of-the-Art Treatment Rooms
— ,
— ,
— ,
— ,
— ,
<!-- public/index.php -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctors</title>
<!-- Bootstrap CSS Link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<h1 class="text-center my-4">Our Doctors</h1>
<div class="row">
<?php
include './includes/db.php';
$sql = "SELECT * FROM doctors";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "<div class='col-md-4 mb-4'>";
echo "<div class='card'>";
echo "<img src='images/{$row['image']}' class='card-img-top' alt='{$row['name']}'>";
echo "<div class='card-body'>";
echo "<h5 class='card-title'>{$row['name']}</h5>";
echo "<p class='card-text'>Specialty: {$row['specialty']}</p>";
echo "<p class='card-text'>Contact: {$row['contact']}</p>";
echo "</div>";
echo "</div>";
echo "</div>";
}
} else {
echo "<p>No doctors found.</p>";
}
$conn->close();
?>
</div>
</div>
</body>
</html>