-
Notifications
You must be signed in to change notification settings - Fork 22
/
search.quick.php
55 lines (44 loc) · 1.42 KB
/
search.quick.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
<?php
ob_start();
session_start();
?>
<!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>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="css/master.css" type="text/css" />
</head>
<?php
if(!empty($_SESSION['EMP_ID']) || !empty($_SESSION['SEEK_ID']))
{ include 'title_bar.loggedin.php'; include 'navigation.navi.bar.php'; }
else { include 'title_bar.php'; include 'navigation_bar.php'; }
?>
<body>
<!-- Start of Body Struct Div -->
<div id="body_struct">
<!-- Start of Search Div -->
<div id="quick_search" );>
<!-- Start of Body Heading Div -->
<div class="heading">
<div style="float: left; width: 96%">Quick Job Search</div>
</div clas="heading">
<!-- End of Body Heading Div -->
<!-- Start of Search Body Div -->
<div id="search_body">
<br /><br />
<!-- Start of table in which data displayed -->
<!-- php code to fetching data from database -->
<?php include 'search.quick.fetch.php'; ?>
<!-- End of table in which data displayed -->
</div id="search_body">
<!-- End of Search Body Div -->
<!-- End of Search Div -->
</div id="search">
</div id="body_struct">
<!-- End of Body Struct Div -->
</body>
<?php
include 'footer_bar.php';
?>
</html>