-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfun.php
65 lines (62 loc) · 1.51 KB
/
fun.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
61
62
63
64
65
<?php include 'header.php'; ?>
<section id="portfolio">
<div class="container-fluid">
<div class="center">
<h2>Fun</h2>
<p class="lead">Word Cloud of the surahs of the Qur'an</p>
</div>
<div class="row">
<?php
$all_images = [];
for ($i=0; $i < 114; $i++) {
array_push($all_images, $i);
}
$random_images = array_rand($all_images, 8);
foreach ($random_images as $key => $value) { ?>
<div class="col-sm-6">
<div class="panel panel-info">
<div class="panel-heading text-center"><h2 class="panel-title">Which surah does this picture remind you of?</h2></div>
<div class="panel-body">
<img src="cloud/<?= $value ?>.png" class="img img-responsive">
</div>
<div class="panel-footer">
<div class="checkbox">
<label>
<input type="checkbox" value="">
Surat Fathia
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="">
Surat Fathia
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="">
Surat Fathia
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" value="">
Surat Fathia
</label>
</div>
</div>
</div>
</div>
<?php }
?>
</div>
</div>
</section>
<?php include 'footer.php'; ?>
<script type="text/javascript">
$(document).ready(function(){
$.getJSON('quran.json', function(data){
console.log(data)
});
});
</script>