Index :: Week 1 :: Week 2 :: Week 3 :: Week 4 :: Week 5 :: Week 6 :: Home

This is Krisse's assignment site for LVS course. Instructor Jeramie Risinger.

Syllabus

Week 1

PHP Facts, PHP Code Tags and Syntax, Comments, Indentation and Spacing,
Echo and Print, Functions, Your First Script,
Show Source, Variable Naming, Include The Date() Function, Error Handling

Week 2

Control Structures, Operators, for() loop

Week 3

Control Structures - IF(), IF-ELSE, phpinfo Function, Browser Detect, strstr Function

Week 4

Forms and Data Checking, The Mail Command, Sending An E-mail, Security

Week 5

The Switch Statement, Arrays, The foreach() Statement, Cookies

Week 6

File Modes, fopen(), fread(), fclose(), fwrite(), unlink(), 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=UTF-8" />
<meta name="author" content="Kristiina Hillerström" />
<meta name="Description" content="Assignment site" />
<title>Introduction to PHP</title>
<link href="introphp.css" rel="stylesheet" type="text/css" />
</head>



<body>

<!-- header -->
  <div id="header"><a name="Up" id="Up"></a><img src="images/introphp_header.jpg" alt="header" width="700" height="110" />
    <h1>Introduction to PHP</h1>
</div><!-- /header -->
  
<!-- container -->  
<div id="container">

  
     <?php
     
//include the navigation menu
     
include ("includes/navigation.inc");
     
?>
  
    <p>This is Krisse's assignment site for
     <a href="http://www.lvsassociates.com/register/product_info.php?products_id=136">LVS</a> course. Instructor
     <a href="http://www.lvsonline.com/instructors.shtml#jeramie">Jeramie Risinger</a>.</p>
    <h2>Syllabus</h2>
    <h3>Week 1</h3>
    <p> PHP Facts, PHP Code Tags and Syntax, Comments, Indentation and Spacing,<br /> 
        Echo and Print, Functions, Your First Script,<br /> 
        Show Source, Variable Naming, Include The Date() Function, Error Handling
    </p>
    <h3>Week 2</h3>
    <p> Control Structures, Operators, for() loop</p>
    
    <h3>Week 3</h3>
    <p> Control Structures - IF(), IF-ELSE, phpinfo Function, Browser Detect, strstr Function</p>
    <h3>Week 4</h3>
    <p> Forms and Data Checking, The Mail Command, Sending An E-mail, Security</p>
    <h3>Week 5</h3>
    <p> The Switch Statement, Arrays, The foreach() Statement, Cookies</p>
    <h3>Week 6</h3>
    <p> File Modes, fopen(), fread(), fclose(), fwrite(), unlink(), Writing With Multiple Data</p>

<p class="koodi">
    <?php
    
//shows the source code of the page and navigation bar
    
show_source("index.php");
    
show_source("includes/navigation.inc");
    
?>
</p>

<p><a href="#Up">[Up]</a></p>    
<div id="footer"><!-- footer -->
    &copy; K.Hillerstr&ouml;m 2008 
    <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10"
     alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a>
        
    <a href="http://jigsaw.w3.org/css-validator/check?uri=referer"><img src="http://jigsaw.w3.org/css-validator/images/vcss"
     alt="Valid CSS!" height="31" width="88"/></a> Last Updated
    <!-- #BeginDate format:Ge1m -->18.01.2009  9:45<!-- #EndDate -->
  </div><!-- /footer -->
  
  
  
</div><!-- /container -->

</body>
</html>
  <h3 class="centered"><a href="index.php">Index</a> :: <a href="week1.php">Week 1</a>
:: <a href="week2.php">Week 2</a> :: <a href="week3.php">Week 3</a> :: <a href="week4.php">Week 4</a> :: <a href="week5.php">Week 5</a> :: <a href="week6.php">Week 6</a> :: 
    <a href="../index.en.html">Home</a> </h3>

[Up]