-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaying-view.php
More file actions
27 lines (25 loc) · 832 Bytes
/
playing-view.php
File metadata and controls
27 lines (25 loc) · 832 Bytes
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
<?php
/**
* @author Sherly Santiadi 2072025
**/
$movieDao = new MovieDaoImpl();
?>
<div class="row mx-lg-n5">
<?php
$movies = $movieDao->fetchAllMovie();
foreach ($movies->results as $item) {
echo '<div class="col py-3">
<div class="card" style="width: 18rem;">
<img class="card-img-top" alt="img" src="https://image.tmdb.org/t/p/w185/' . $item->poster_path . '">
<a href="index.php?webmenu=edgen3&id=' . $item->id . '"style="text-decoration: none;">' . $item->original_title . '</a>
<p class="card-text" style="height: 180px;">' . $item->overview . '</p>
</div>
</div>';
}
?>
</div>
<script>
function addMovie() {
window.location = "index.php?webmenu=edgen2";
}
</script>