-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.php
66 lines (62 loc) · 1.95 KB
/
movies.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
<?php include("include/header.php");
$sq="select * from movies";
$res=mysqli_query($con,$sq);
?>
<div class="now-showing-movies">
<h3 class="m-head">Now Showing</h3>
<?php
while($nm=mysqli_fetch_assoc($res))
{
?>
<div class="col-md-4 movie-preview">
<a href="buynow.php?id=<?php echo$nm['m_id']; ?>" class="mask">
<img src="upload/<?php echo $nm['m_banner'];?>" class="img-responsive zoom-img" alt="" />
<div class="m-movie-title">
<a class="m-movie-link" href="buynow.php?id=<?php echo$nm['m_id']; ?>"><?php echo$nm['m_nm']; ?></a>
<div class="clearfix"></div>
<div class="m-r-date">
<p><i class="fa fa-calendar-o"></i><?php echo$nm['m_date']; ?></p>
<a href="buynow.php?id=<?php echo$nm['m_id']; ?>">book now</a>
</div>
<div class="m-r-like">
<i class="fa fa-thumbs-up"></i>
<p>rocking</p>
</div>
<div class="clearfix"></div>
</div>
</a>
</div>
<?php
}
?>
<div class="clearfix"></div>
</div>
<div class="now-showing-movies">
<h3 class="m-head">Next Change & Coming Soon</h3>
<?php $sq1="select * from upmovies";
$res1=mysqli_query($con,$sq1);
while($nm1=mysqli_fetch_assoc($res1))
{
?>
<div class="col-md-4 movie-preview">
<a href="movie_details.php?id=<?php echo$nm1['um_id']; ?>" class="mask">
<img src="upload/<?php echo $nm1['um_banner'];?> " class="img-responsive zoom-img" alt="" />
<div class="m-movie-title">
<a class="m-movie-link" href="buynow.php?id=<?php echo$nm['m_id']; ?>"><?php echo$nm['m_nm']; ?></a>
<div class="clearfix"></div>
<div class="m-r-date">
<p><b><?php echo $nm1['um_nm']; ?></b></p>
</div>
<div class="m-r-like">
<p>want to see <span>96</span>%</p>
</div>
</a>
<div class="clearfix"></div>
</div>
</div>
<?php
}
?>
<div class="clearfix"></div>
</div>
<?php include ("include/footer.php"); ?>