LzyDaz Designs
www.lzydaz.com

Course Syllabus
- What is PHP?
- Programming Basics
- PHP Syntax
- Variables
- Includes
- Built-In Functions
- Computer Logic
- Conditional Statements
- Formatting Data
- Loops
- Debugging PHP
- Separation of Concerns
- Forms and Handlers
- Mail Function
- Security
- Database Entry
- Displaying Database Data
- Customized Pages
5.3.6
<?php $siteName = 'LzyDaz Designs<br /><em><span class="white-text">www.lzydaz.com</span></em>'; ?>
<?php $currentWeek="home"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>PHP Classwork</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link href="common/site.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="head">
<p><?php echo $siteName; ?></p>
</div><!--close #head-->
<div id="wrap">
<div id="content">
<h1><img src="images/chalk1.gif" height="215" width="300" alt="Class in Session" /></h1>
<div id="bar-nav">
<?php include('includes/bar-nav.php'); ?>
</div><!--close bar-nav-->
<h2>Course Syllabus</h2>
<?php include('includes/syllabus.php'); ?>
</div><!--close #content-->
</div><!--close #wrap-->
<div id="foot">
<p>Bonnie Lincicome © <?php echo date('Y');?> All Rights Reserved<br />
This page was last updated on <?php echo date('F d, Y H:i:s', getlastmod($filename)); ?></p>
</div><!--close #foot-->
<div id="source">
<?php echo phpversion(); ?>
<hr />
<?php show_source('index.php'); ?>
</div><!--close #source-->
</body>
</html>