-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (23 loc) · 710 Bytes
/
Copy pathindex.php
File metadata and controls
23 lines (23 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>PHP Starter Application</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<table>
<tr>
<td style='width: 30%;'><img class = 'newappIcon' src='images/newapp-icon.png'>
</td>
<td>
<h1 id = "message"><?php echo "Hello world!?"; ?>
</h1>
<p class='description'></p> Thanks for creating a <span class="blue">PHP Starter Application</span>. Get started by reading our <a
href="https://www.ng.bluemix.net/docs/#starters/php/index.html#php">documentation</a>
or use the Start Coding guide under your app in your dashboard.
</td>
</tr>
</table>
</body>
</html>