-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmovies_events.php
36 lines (31 loc) · 1.05 KB
/
movies_events.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
<?php include('header.php');?>
<div class="content">
<div class="wrap">
<div class="content-top">
<center><h1 style="color:#555;">NOW SHOWING IN CINEMA</h1></center>
<?php
$today=date("Y-m-d");
$qry2=mysqli_query($con,"select * from tbl_movie ");
while($m=mysqli_fetch_array($qry2))
{
?>
<div class="col_1_of_4 span_1_of_4">
<div class="imageRow">
<div class="single">
<?php
?>
<a href="about.php?id=<?php echo $m['movie_id'];?>"><img src="<?php echo $m['image'];?>" alt="" /></a>
</div>
<div class="movie-text">
<h4 class="h-text"><a href="about.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');?>