-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide_detail.php
More file actions
59 lines (39 loc) · 1.91 KB
/
guide_detail.php
File metadata and controls
59 lines (39 loc) · 1.91 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
<?php
require_once("includes/dbsmain.inc.php"); // ADDING CONNECTION FILES
ob_start();
$sql="select * from tbl_guideline where 1 and guide_id='$_REQUEST[guide]'";
$record_dis=mysql_fetch_array(db_query($sql));
@extract($record_dis);
?>
<link href="style.css" type="text/css" rel="stylesheet" />
<table border="1" cellpadding="2" cellspacing="0" width="100%" align="center" class="mt20px large" style="background-color:#284c93;margin-top:60px;" >
<tr>
<td colspan="2" align="center" style="background-color:#284c93;color:#FFFFFF;font-weight:bold;padding-top:5px;padding-bottom:5px;">Guideline Detail</td></tr>
<tr>
<td width="30%" style="background-color:#284c93; color:#FFFFFF;font-weight:bold;" ><p class="p5px ml10px">Guide By</p></td>
<td width="70%" ><p class="p5px ml10px" style="background-color:#FFFFFF;"> <?=$guide_from?></p></td>
</tr>
<tr>
<td width="30%" style="background-color:#284c93; color:#FFFFFF;font-weight:bold;" ><p class="p5px ml10px">Guide To</p></td>
<td width="70%" ><p class="p5px ml10px" style="background-color:#FFFFFF;"> <?=$guide_to?></p></td>
</tr>
<tr>
<td valign="top" width="27%" style="background-color:#284c93;color:#FFFFFF;font-weight:bold;vertical-align:middle;"><p class="p5px ml10px" >Guide Details</p></td>
<td width="71%">
<div class="p5px ml10px" style="height:120px; background-color:#FFFFFF;overflow:scroll;">
<?=$guide_msg?>
</div></td>
</tr>
<tr>
<td valign="top" width="27%" style="background-color:#284c93;color:#FFFFFF;font-weight:bold;"><p class="p5px ml10px">Guide Date</p></td>
<td width="71%"><p class="p5px ml10px" style="background-color:#FFFFFF;">
<?=$guide_date?>
</p></td>
</tr>
<tr>
<td valign="top" width="27%" style="background-color:#284c93;color:#FFFFFF;font-weight:bold;"><p class="p5px ml10px">Guide Status</p></td>
<td width="71%"><p class="p5px ml10px" style="background-color:#FFFFFF;">
<?=$guide_status?>
</p></td>
</tr>
</table>