-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathview_preference.php
More file actions
37 lines (36 loc) · 2.47 KB
/
view_preference.php
File metadata and controls
37 lines (36 loc) · 2.47 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
<style type="text/css">
.pga {width: 100%;}
body{background-color: lightgrey;}
.view_preference { display:table; width:30%;background-color: #edf9f3;margin:auto;padding-top: 20px;}
</style>
<body style="margin: 0px; font-family: sans-serif;">
<div class = "pga">
<?php
include 'init.php';
if(!logged_in())
{
header('Location: index.php');
exit();
}
include 'template/header.php';
?>
<div class="view_preference">
<ul>
<li>Looking for : <?php echo retrieve_data('looking','preference');?></li>
<li>Aged : <?php echo retrieve_data('agefrom','preference');?> to <?php echo retrieve_data('ageto','preference');?> yrs</li>
<li>Height : <?php echo retrieve_data('height_from','preference');?> cm to <?php echo retrieve_data('height_to','preference');?> cm</li>
<li>Marital Status : <?php echo retrieve_data('marital_status','preference');?></li>
<li>Religion : <?php echo retrieve_data('religion','preference');?></li>
<li>Mother Tongue : <?php echo retrieve_data('mother_tongue','preference');?></li>
<li>State : <?php echo retrieve_data('state','preference');?></li>
<li>Education : <?php echo retrieve_data('education','preference');?></li>
<li>Course : <?php echo retrieve_data('course','preference');?></li>
<li>Occupation : <?php echo retrieve_data('occupation','preference');?></li>
<li>Annual Income : <?php echo retrieve_data('income','preference');?></li>
</ul>
</div>
<?php
include 'template/footer.php';
?>
</div>
</body>