forked from cloudfoundry-samples/cf-php-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
34 lines (34 loc) · 855 Bytes
/
index.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
<?php include 'init.php';?>
<!DOCTYPE html>
<html>
<head>
<title>CF PHP Buildpack Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<h1>CF PHP Buildpack Demo</h1>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Language</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<?php while ($line = pg_fetch_array($result, null, PGSQL_ASSOC)) { ?>
<tr>
<?php foreach ($line as $col_value) { ?>
<td><?php echo $col_value;?></td>
<?php } ?>
</tr>
<?php } ?>
</tbody>
</table>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
<?php include 'teardown.php';?>