forked from mvtindia/aiplaztest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventenquiry.php
118 lines (62 loc) · 2.37 KB
/
eventenquiry.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html>
<head>
<title>Search</title>
<?php include 'lib/top.php';?>
</head>
<body>
<div class="container-fluid"><!--container-fluid start-->
<div class="row">
<!--==============menu header=========================-->
<div class="menu-had2">
<?php include 'lib/header.php';?>
</div><!--menu-had close-->
<!--==============menu header close=========================-->
<div class="container">
<div class="col-md-12">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- tabs left -->
<div class="tabbable tabs-left">
<!-- <ul class="nav nav-tabs col-md-2 col-xs-12">
<h3>List a Service</h3>
<li class="active"><a href="#a" data-toggle="tab"><img class="ico" src="img/wedding.png"> Wedding</a></li>
<li ><a href="#b" data-toggle="tab"><img class="ico" src="img/party.png"> Party</a></li>
<li><a href="#c" data-toggle="tab"><img class="ico" src="img/business.png"> Business</a></li>
<li><a href="#d" data-toggle="tab"><img class="ico" src="img/other.png"> Others</a></li>
</ul> -->
<div class="tab-content col-md-12 col-xs-12"><!--------Main Tab Starts------------>
<div class="tab-pane active" id="a"><!--------Wedding Tab Starts------------>
<h3>Select Your Events</h3>
<div class="row">
<?php
$query1=mysqli_query($connect,'SELECT * FROM `usedfor`');
while ($row1=mysqli_fetch_array($query1)){
?><!---First Row of wedding------>
<div class="col-md-3">
<figure class="snip1205">
<img class="img-responsive" src="../bookmyspace/images/events/<?php echo $row1['ufimage'];?>" >
<?php ?>
<i class="fa fa-search"></i>
<a href="eventenquiry.php?id=<?php echo $row1['ufid'];?>"></a>
<h4 class="f1"><?php echo $row1['ufname'];?></h4>
</div>
<?php }?>
</div>
<!-- <!-- <div class="row"> <!---Second Row of wedding------>
</div>
</div>
</div>
</div>
</div>
</div><!--container close-->
</div><!--row close-->
</div><!--container-fluid close-->
</body>
<!--======footer======-->
<?php include 'lib/footer.php';?>
<!--======footer close======-->
</div>
</div>
</html>