-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie_details.php
29 lines (27 loc) · 1.06 KB
/
movie_details.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
<?php include('include/header.php');
$qry2=mysqli_query($con,"select * from upmovies where um_id='".$_GET['id']."'");
$movie=mysqli_fetch_array($qry2);
$id=$_GET['id'];
?>
<div class="content" >
<div class="wrap">
<div class="content-top" >
<div class="section group">
<div class="about span_1_of_21">
<center><h3 style="color:blue;text-transform:uppercase;font-weight:bold">Movie Name: <?php echo $movie['um_nm']; ?></h3> </center>
<div class="about-top">
<div class="grid images_3_of_2">
<img src="upload/<?php echo $movie['um_banner']; ?>" width="400px" height="200px" alt="Banner Not Supported"/>
</div>
<div class="desc span_3_of_2">
<p class="p-link" style="font-size:15px" ><b>Cast : </b><?php echo $movie['um_cnm']; ?></p>
<p class="p-link" style="font-size:15px"><b>Release Date : </b><?php echo date('d-M-Y',strtotime($movie['um_date'])); ?></p>
<p style="font-size:15px"><b>Description : </b><?php echo $movie['um_des']; ?></p>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
<?php include('include/footer.php');?>