This is the index page for my "Introduction to PHP" LVS Online class. At the top are links to each week's homework pages.

Here is a summary of each week's lesson.

Week 1. PHP facts, code tags, and syntax, echo and print statements, comments, show source, variable naming, include, the date function, and error handling.

Week 2. Control structures, operators, and for()loop.

Week 3. IF and IF-ELSE structures, phpinfo function, browser detect, and strstr function.

Week 4. Forms and data checking, mail command, sending an e-mail, security.

Week 5. Switch statement, arrays, foreach() statement, and cookies.

Week 6. File modes, fopen(), fread(), fclose(), fwrite(), unlink(), and writing with multiple data.

<!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">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Intro to PHP</title>
<link href="phpindex.css" rel="stylesheet" type="text/css" />
</head>


<body>

<div id="container" class="seventyopacity">

<div id="head">
<h1>INTRODUCTION TO PHP - INDEX</h1>
</div>

<?php
// include the navigation menu
include("navigation.inc");
?>

<div id="content">
<p>This is the index page for my "Introduction to PHP" LVS Online class.  At the top are links to each week's homework pages.</p>
<p>Here is a summary of each week's lesson.</p>
<p>Week 1. PHP facts, code tags, and syntax, echo and print statements, comments, show source, variable naming, include, the date function, and error handling.</p>
<p>Week 2. Control structures, operators, and for()loop.</p>
<p>Week 3. IF and IF-ELSE structures, phpinfo function, browser detect, and strstr function.</p>
<p>Week 4. Forms and data checking, mail command, sending an e-mail, security.</p>
<p>Week 5. Switch statement, arrays, foreach() statement, and cookies.</p>
<p>Week 6. File modes, fopen(), fread(), fclose(), fwrite(), unlink(), and writing with multiple data.</p>
</div>

<div id="foot">
</div>
</div>

<?php
show_source
("phpindex.php");
?>

</body>
</html>