PHP "Hello World" Program
Details
- Details
- Category: php
- Created on Tuesday, 31 January 2012 15:07
- Last Updated on Wednesday, 04 April 2012 09:25
- Published on Tuesday, 31 January 2012 15:07
- Written by Administrator
- Hits: 8297
write "Hello World !" with PHP :
<html>
<head>
<title>My First PHP Page</title>
</head>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>