The Course Overview

  • What is PHP?
  • Programming basics
  • PHP syntax
  • Variables
  • Includes
  • Built-in functions
  • Loops
  • Debugging PHP
  • Separation of Concerns
  • Computer logic
  • Conditional Statements
  • Formatting Data
  • PHP forms and form handlers
  • PHP mail function
  • PHP security
  • PHP database entry
  • PHP displaying database data
  • Customized pages

I look forward to not only completing this course, but to understanding what PHP is about so that I can use what I learn in 'real life'!

 

4.4.9
<?php 
//Here is where I will list my variables
    
$myName "R. Joanne Johnson";
    
$pageTitle "PHP for Web Developers 101";
 
?>
<!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=utf-8" />
<title><?php echo $pageTitle ?></title>


<link href="common/php101.css" rel="stylesheet" type="text/css" />
</head>

<body class="oneColElsCtrHdr">

<div id="container">
  <div id="header">
    <h1><?php echo $pageTitle  ?> <br />
      at LVS<br />
      <span class="headerspan" >Lesson prepared by <?php echo  $myName?><br />
      Instructors: Jeramie Risinger and Bean Fairbanks</span>    </h1>

  <!-- end #header --></div>
  <?php include('includes/nav.php'); ?>
  <div class="inContainer" id="mainContent">
    
    <h1>The Course Overview</h1>
    <table width="500" cellpadding="2" cellspacing="2" class="tableList">
      <tr>
        <td><ul>
          <li>What is PHP?</li>
          <li>Programming basics</li>
          <li>PHP syntax</li>
          <li>Variables</li>
          <li>Includes</li>
          <li>Built-in functions</li>
          <li>Loops</li>
          <li>Debugging PHP</li>
          <li>Separation of Concerns</li>
          </ul>        </td>
        <td><ul>
          <li>Computer logic</li>
          <li>Conditional Statements</li>
          <li>Formatting Data</li>
          <li>PHP forms and form handlers</li>
          <li>PHP mail function</li>
          <li>PHP security</li>
          <li>PHP database entry</li>
          <li>PHP displaying database data</li>
          <li>Customized pages</li>
        </ul>        </td>
      </tr>
    </table>
    <p>I look forward to not only completing this course, but to understanding what PHP is about so that I can use what I learn in 'real life'!</p>
    
    <h2>&nbsp;</h2>
    <!-- end #mainContent --></div>
<div id="footer">
    
    <p align="center">© R. Joanne Johnson, 2008 </p>
    <p align="center"> <a href="http://jigsaw.w3.org/css-validator/"> <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" /> </a> <a href="http://jigsaw.w3.org/css-validator/"> <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!" /> </a> </p>
      <!-- end #footer -->
    
    </div>
<!-- end #container --></div>

<div id="showsourcediv"><?php echo phpversion(); ?>
<hr />
<?php show_source('index.php'); ?> 
<?php show_source('nav.php'); ?>
</div>

</body>
</html>

Warning: show_source(nav.php) [function.show-source]: failed to open stream: No such file or directory in /home/rjoannej/public_html/php101/index.php on line 72

Warning: show_source() [function.show-source]: Failed opening 'nav.php' for highlighting in /home/rjoannej/public_html/php101/index.php on line 72