-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdroppable.php
More file actions
26 lines (23 loc) · 848 Bytes
/
droppable.php
File metadata and controls
26 lines (23 loc) · 848 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
<?php
include 'functions.php';
$target = $_POST['targetID'];
$items = get_items($target[0]);
// echo "ID: " . $target[0];
// echo "Place: " . $target[1];
if ($target[1] == 'featured') {
?>
<div class="card-image">
<img src="<?php echo $items[0]['image']; ?>" />
<span id="<?php echo $items[0]['id']; ?>" class="card-title"><?php echo $items[0]['title']; ?></span>
</div>
<div class="card-content">
<p><?php echo $items[0]['content']; ?></p>
</div>
<?php } else { ?>
<div id="<?php echo $target[1]; ?>" class="card teaser" style="background-image: url(<?php echo $items[0]['image']; ?>);">
<div class="card-content white-text">
<span class="card-title"><?php echo $items[0]['title']; ?></span>
<p><?php echo $items[0]['content']; ?></p>
</div>
</div>
<?php } ?>