Saturday, May 4, 2013

To echo a page with PHP 

<?php 
echo "Page";
?>
HTML cannot be in PHP, however PHP CAN be in HTML.

To start a website with HTML

<!DOCTYPE html>
<html>
<head>
<title>
Title Name
</title>
</head>
<body>
Body information
</body>
</html>

Welcome to my new blog

this is the start of a lot of programming posts :)