-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpTest.php
More file actions
30 lines (25 loc) · 752 Bytes
/
phpTest.php
File metadata and controls
30 lines (25 loc) · 752 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
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>PHP with HTML5</title>
<link rel="stylesheet" href="" type="text/css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<script src="js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="css/ie6.css"/><![endif]-->
</head>
<body>
<header>PHP Test Page</header>
<br/>
<?php
echo '<p>PHP Test!</p>';
?>
Github Pages is not a full-featured web host. It will not execute PHP, or any other arbitrary code. <br />
Does not work on github.io
<br/>
<footer>Copyright @Pranay - 2015</footer>
</body>
</html>