-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.php
More file actions
38 lines (31 loc) · 1.11 KB
/
Copy pathevents.php
File metadata and controls
38 lines (31 loc) · 1.11 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
<?php include('header.php');?>
</div>
<div class="content">
<div class="wrap">
<div class="content-top">
<center><h1 style="color:#555;">(NOW SHOWING)</h1></center>
<?php
$today=date("Y-m-d");
$qry2=mysqli_query($con,"select * from tbl_events ");
while($m=mysqli_fetch_array($qry2))
{
?>
<div class="col_1_of_4 span_1_of_4">
<div class="imageRow">
<div class="single">
<a href="about1.php?id=<?php echo $m['movie_id'];?>"><img src="<?php echo $m['image'];?>" alt="" /></a>
</div>
<div class="event-text">
<h4 class="h-text"><a href="about1.php?id=<?php echo $m['movie_id'];?>" style="text-decoration:none;">
<?php echo $m['movie_name'];?></a></h4>
Cast: <Span class="color2" style="text-decoration:none;"><?php echo $m['cast'];?></span><br>
</div>
</div>
</div>
<?php
}
?>
</div>
<div class="clear"></div>
</div>
<?php include('footer.php');?>