Making a cup of Iced Tea.
Making a cup of coffee.
Code:
<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div class="topbar">
<?php
include 'navbar.php';
?>
</div>
<?php
//function stuff
function orderDrink ($drink = "coffee")
{
return "Making a cup of $drink.\n";
}
echo orderDrink ("Iced Tea");
echo '<br>';
echo orderDrink ();
echo '<br>';
/* outputs in this format:
Making a cup of Iced Tea.
Making a cup of coffee.
*/
?>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex011.php");
?>
</div>
</body>
</html>