PHP Index

In order to become familiar with PHP programming structures and commands, we will build various PHP pages. The following assignments will explain PHP commands, provide a link to a working sample, and detail the working sample's PHP code.

print();

For example: print.php


<html>
<head>
<title>print.php</title>
</head>
<body>
<?php

print("I am so happy to be a horned toad!");

print(
"<br><br>");

print(
"My favorite quote is 'In the end there can be only one.'");  

print(
"<br><br>");

echo 
"printing is easy with \"PHP Hypertext Prepocessor\".";
?>

</body>
</html>