-
Notifications
You must be signed in to change notification settings - Fork 0
/
editdepot.php
79 lines (77 loc) · 4.35 KB
/
editdepot.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
table#clr tr:hover
{
background-color:#ccff99;
font-size:20px;
}
</style>
<title>Car Online</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="main"> <a href="#"><img src="images/logo.gif" alt="" border="0" class="logo" /></a>
<ul class="topcar">
<li><a href="#"><img src="images/a.png" alt="" width="78" height="92" border="0" /></a></li>
<li><a href="#"><img src="images/b.png" alt="" width="79" height="92" border="0" /></a></li>
<li><a href="#"><img src="images/c.png" alt="" width="79" height="92" border="0" /></a></li>
<li><a href="#"><img src="images/d.png" alt="" width="79" height="92" border="0" /></a></li>
</ul>
<ul class="topnav">
<li ><a href="depothome.php" style="font:bold 12px Tahoma">HOME</a> | </li>
<li ><a href="buses.php" style="font:bold 12px Tahoma;">BUSES</a> |</li>
<li><a href="reachonsent.php" style="font:bold 12px Tahoma">REACHON</a> |</li>
<li><a href="inbox.php" style="font:bold 12px Tahoma">INBOX</a> |</li>
<li><a href="logout.php" style="font:bold 12px Tahoma">LOGOUT</a> |</li>
</ul>
<h2 class="gallary">Kerala State Road Transport Corporation</h2>
<div id="header" style="background:url(images/depothome.jpg);"> </div>
<div id="body">
<form id="form1" name="form1" method="post" action="" style="float:left;" >
<table width="388" height="272" border="0" cellpadding="5" cellspacing="0" id="clr">
<tr>
<th width="168" scope="row"><img src="images/profile.png" width="78" height="78"></th>
<td width="194"><a href="depothome.php"><b>PROFILE</b></a></td>
</tr>
<tr>
<th scope="row"><img src="images/bustype.png" width="78" height="78"></th>
<td><a href="buses.php"><b>BUSES</b></a></td>
</tr>
<tr>
<th height="88" scope="row"><img src="images/mail.png" width="78" height="78"></th>
<td><a href="inbox.php"><b>INBOX</b></a></td>
</tr>
</table>
</form>
<br />
<form style=" background-color: transparent;" action="dupdateprocess.php" method="post" class="search">
<p><img src="images/depotprofile.png" alt="" width="145" height="27" align="middle" class="head" / ></p>
<?php
$lid=$_POST["lid"];
include ("query.php");
$ob=new query();
$rs=$ob->viewdepot($lid);
$r=mysqli_fetch_array($rs);
?>
<table width="283" height="161" align="center" cellspacing="14">
<tr><th width="111" style="color:#7A8282; font:16px Tahoma;"><b>NAME</b></th><td width="160"><input type="text" name="dname" style="color:#333; font:12px Tahoma; text-align:center; font-weight:bold; height:25px;" value="<?php echo $r[1];?>" ></td></tr>
<tr><th style="color:#7A8282; font:16px Tahoma;"><b>CONTACT</b></th><td><input type="text" name="contact" style="color:#333; font:12px Tahoma; text-align:center; font-weight:bold; height:25px;" value="<?php echo $r[4];?>" ></td></tr>
<tr><th style="color:#7A8282; font:16px Tahoma;"><b>E-MAIL</b></th><td><input type="text" name="email" style="color:#333; font:12px Tahoma; text-align:center; font-weight:bold; height:25px;" value="<?php echo $r[5];?>" ></td></tr>
<tr><th colspan="2"><input type="submit" name="update" value="UPDATE" style="width:128px; height:20px; color:white; font:bold 12px Tahoma; text-align:center;background:#4CAF50;" > <input type="submit" name="cancel" value="CANCEL" style=" width:128px; height:20px; color:white; font:bold 12px Tahoma; text-align:center;background:#f44336; text-decoration:none;"></th></tr>
</table>
<input type="hidden" name="lid" value="<?php echo $lid;?>">
</form>
<h3 class="tech"></h3>
<h3 class="tech"></h3>
<p class="brd"></p>
<p class="footer"><a href="#">Home</a> | <a href="#">Customer Care</a> | <a href="#">Faq </a> | <a href="#">Reservations</a> | <a href="#">Contact</a></p>
</div>
<div class="foot"> Copyright Information Goes Here<br />
Designed by <a href="http://www.free-css-templates.com/">Free CSS Templates</a>, Thanks to <a href="http://www.dubaiapartments.biz/">Dubai Apartments</a></div>
<br class="spacer" />
</div>
</body>
</html>