forked from Shubhamb7/OnlineMovieStreaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchback.php
40 lines (29 loc) · 1.06 KB
/
searchback.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
<?php
include 'dbh.php';
if(isset($_POST['submit'])){
$option = $_POST['option'];
$text = strtolower($_POST['textoption']);
$person = $_SESSION['id'];
$found = "SELECT * FROM movies WHERE $option LIKE '$text%'";
$display = mysqli_query($conn,$found);
start:
$i=0;
echo"<div class='row'>";
while($final = mysqli_fetch_assoc($display)){
echo"<form action='movie.php' method='POST'>";
echo"<div class='col'>";
echo "<img src='uploads/".$final['imgpath']."' height='250' width='200' style='margin-top: 30px;margin-left:30px;margin-right:20px;' />";
echo"<div class='noob'>";
echo "<input type='submit' name='submit' class='btn btn-outline-info' style='display:block;width:200px;padding-bottom:15px;margin-bottom:30px;margin-left:30px;margin-right:20px;' value='".ucwords($final['name'])."'/>";
echo"</div>";
echo"</div>";
echo"</form>";
if ($i==4) {
echo"</div>";
goto start;
}
$i++;
}
echo"</div>";
}
?>