-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmyorder.php
72 lines (46 loc) · 1.25 KB
/
myorder.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
<!DOCTYPE html>
<?php
include "checksession.php";
$sql = "select fname from registerhere where uname='$usercheck'";
$link = mysqli_connect("localhost","root","","UserInformation");
$r=mysqli_query($link,$sql);
$rs = mysqli_fetch_array($r);
?>
<html>
<head>
<link rel="stylesheet" href="carrental.css">
</head>
<body>
<div class="navbar">
<a href="carrental.php">Home</a>
<a href="tarrif.php">Tarrifs</a>
<a href="#">About us</a>
<a href="#">Contact us</a>
<a href="logout.php" class="right">logout</a>
<a href="#" class="right">
<?php
echo "Hello! ".$rs['fname'];
?>
</a>
<a href="myorder.php" class="right">mybookings
</a>
</div>
<div class="bg-image"></div>
<div class="bg-text">
<div class="header">
<center>
<?php
$sql = "select cc,dc,doi,dor from request where uname='$usercheck'";
$link = mysqli_connect("localhost","root","","UserInformation");
$r=mysqli_query($link,$sql);
$rs = mysqli_fetch_array($r);
echo "Starting point : ".$rs['cc']."<br>";
echo "Destination point : ".$rs['dc']."<br>";
echo "Starting date : ".$rs['doi']."<br>";
echo "Ending point : ".$rs['dor']."<br>";
?>
</div>
</div>
</div>
</body>
</html>