-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.php
124 lines (89 loc) · 3.12 KB
/
student.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
include 'config.php';
?>
<!DOCTYPE html>
<html dir="rtl" lang="ar">
<head>
<meta charset="utf-8">
<title>صفحة الطالب</title>
<link rel="styleSheet" type="text/css" href="css\stylesheet.css">
<link rel="styleSheet" type="text/css" href="css\StudentStyleSheet.css">
</head>
<body>
<div class="header">
<div class="navbar">
<a href="index.html"><img src="imges\tray.jpeg" class="logo" alt="bus logo"></a>
<nav>
<ul>
<li><a href="index.html">الصفحه الرئيسيه</a></li>
<li><a href="aboutus.html">من نحن؟</a></li>
<li><a href="contactus.html">تواصل معنا</a></li>
</ul>
</nav>
</div>
</div>
<div class="container">
<h1>اهلاً بك</h1>
<form action="" method="post">
<label for="Neighborhood">اختاري الحي:</label><br><br>
<select id="Neighborhood" name="Neighborhood" >
<option>المنطقه</option>
<option value="1"> الحلقة الغربية - الحلقة الشرقية - القيم</option>
<option value="3"> الحلقة الغربية - الحلقة الشرقية - مخطط القاضي</option>
<option value="4"> وادي النمل - المنتزة</option>
<option value="5"> العرفاء</option>
<option value="6"> ريحه - الواصليه</option>
<option value="7"> السحيلي</option>
<option value="8"> السر - الزوران</option>
<option value="9"> معشي</option>
<option value="10"> الرميدة - الزوران</option>
<option value="11"> البلد</option>
<option value="12"> الواسط - السيل الصغير</option>
<option value="13"> ريحه - رحاب</option>
<option value="14"> قيا</option>
</select>
<br><br>
<label for="period">اختاري الفتره :</label><br><br>
<select id="period" name="period" >
<option >الفتره</option>
<option value="1"> صباحي</option>
<option value="2">مسائي</option>
</select>
<br><br>
<button type="submit" class="btn">أبحث</button>
</form>
<?php
if(isset($_POST["Neighborhood"]) && isset($_POST["period"])){
$Neighborhood = $_POST["Neighborhood"];
$period = $_POST["period"];
$sel_query="Select * from bus_driver WHERE neigh_id = '$Neighborhood' and period = '$period' ";
$result = mysqli_query($connection,$sel_query) or mysqli_error($connection);
echo "<table >
<tr>
<th>اسم السائق</th>
<th>نوع الحافه</th>
<th>السعر</th>
<th>رقم الهاتف</th>
</tr>";
if(!$result){
die( mysqli_error($connection));
}
else{
while($row = mysqli_fetch_array($result)) {
echo "<tr>";
echo "<td width=10%>" . $row["dri_name"] . "</td>";
echo "<td width=10%>" . $row["bus_type"] . "</td>";
echo "<td width=6%>" . $row["price"] . "</td>";
echo "<td width=10%>" . $row["mobile"] . "</td>";
echo "</td>";
}
echo "</table>";
}
}
?>
</div>
<div class="footer">
<p>© جميع الحقوق محفوظه2022</p>
</div>
</body>
</html>