Create hello.php

This commit is contained in:
vakeeshanvictor 2018-10-08 21:24:09 +05:30 committed by GitHub
parent 0e23257c8a
commit 7334f34bad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
hello.php Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>