-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscover_othersPHP.php
60 lines (59 loc) · 2.65 KB
/
discover_othersPHP.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
<?php
include("mysql.php");
function displayView()
{
try{
$connection = DatabaseConnection();
$stmt = $connection->prepare("select * from events where egenre not in ('Music','Comedy)");
$stmt->execute();
$count = $stmt->rowCount();
if($count > 0){
while($row = $stmt->fetch()){
$name = $row["ename"];
$img = $row['eimg'];
$location = $row['eloc'];
$min_age = $row['eage'];
$id = $row['event_id'];
$genre =$row['egenre'];
$passes=$row['epasses'];
if ($passes <= 0)
{
echo '<div class="col-md-3" style="margin-bottom:10px">
<a href="content.php?id='.$id.'" style="color: inherit;text-decoration: none;">
<div class="card" style=margin-bottom:5px">
<div class="card-body" style="padding: 0px;width: 250px;"><img class="event-image" style="width: 250px;height: 300px;" src="/BookItUp/event_images/'.$img.'">
<div style="margin-top: 7px;font-family: Montserrat;font-weight: 600;">
<p style="margin-left: 7px;">'.$name.'</p>
<p class="text-center" style="font-weight: normal;font-size: 14px;color:red;">Sold Out!</p>
</div>
</div>
</div>
</a></div>';
}
else{
echo '<div class="col-md-3" style="margin-bottom:10px">
<a href="content.php?id='.$id.'" style="color: inherit;text-decoration: none;">
<div class="card" style=margin-bottom:5px">
<div class="card-body" style="padding: 0px;width: 250px;"><img class="event-image" style="width: 250px;height: 300px;" src="/BookItUp/event_images/'.$img.'">
<div style="margin-top: 7px;font-family: Montserrat;font-weight: 600;">
<p style="margin-left: 7px;">'.$name.'</p>
<p class="text-center" style="font-weight: normal;font-size: 12px;">'.$min_age.' | '.$genre.' |
'.$location.'</p>
</div>
</div>
</div>
</a></div>';
}
return 1;
}
}
else{
return 0;
}
}
catch(PDOException $exception_error)
{
echo "No data found in this section!";
}
}
?>