About ME!

Joanne's image Yes! I get to talk about myself, but now I am not sure what I should say! I do like Bonnie's poem because it is so all encompassing of a person but, I won't copy that. I shall, then, just go about it all in a more ordinary way, just highlight some of the things that are important to me.

I will divide my life at this point into 4 areas:

Family

I have a son and a daughter whose families are the joys of my life! My grandchildren fill me with pride in their accomplishments and make me so thankful that my children, and their spouses, have given so much love, time and energy to my grandchildren!

Professional Life

I have gone to school all of my life and I still love it! Actually, I retired from teaching elementary school for over 28 years in 1992. Since then, I have found my way back into the classroom and presently teach computer classes to kindergarten through grade 8 students in a private school. What a great thing when, later in your life, you can unite the two things that bring excitement and fulfillment to you...for me those are teaching and computers.

Hobbies

So many things that I love to do! Sewing, computer art with Photoshop, Illustrator and Painter, attempting to create web sites, as I have done for my school, are but a few.

I also love listening to books on my iPod when walking, ironing, eating lunch or doing any mindless task. When could I have time to sit and read "Pillars of the Earth" or "Crime and Punishment", "Anna Karenina" and so on. I am grateful to Audible.com! Reading time is reserved for books like "Photoshop: Masking and Compositing". More time would be a blessing!

Goals

My greatest goal is, each day, to learn something new! Or, to deepen the understanding of things I think I know!

Conclusion

The fun of writing this was thinking about the things that bring me happiness and fulfillment so that I can perceive them in an objective and organized way.

Today's day, date and time are Friday, July 30th, 2010 5:29:PM

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>


  <?php 
  
//This is amazing that the header and its container can be an include!
  
include('includes/header.php'); ?>
<?php  
include ('includes/nav.php'?>
  <div id="mainContent">
    <h1> About ME!</h1>
    <div class="inContainer">
      <?php 
      
//The image, its alt tag are all in the include
      
include('includes/moi.php'); ?>
        Yes! I get to talk about myself, but now I am not sure what I should say! I do like Bonnie's <a href="http://www.lzydaz.com/lvs/php101/week1/about.php" target="_blank">poem </a>because it is so all encompassing of a person but, I won't copy that. I shall, then, just go about it all in a more ordinary way, just highlight some of the things that are important to me.
        <p>I will divide my life at this point into 4 areas:</p>
      <ul>
        <li> family</li>
        <li> profession</li>
        <li> hobbies</li>
        <li>goals</li>
      </ul>
      <h3>Family</h3>
      <p>I have a son and a daughter whose families are the joys of my life! My grandchildren fill me with pride in their accomplishments and make me so thankful that my children, and their spouses, have given so much love, time and energy to my grandchildren! </p>
      <h3>Professional Life</h3>
      <p>I have gone to school all of my life and I still love it! Actually, I retired from teaching elementary school for over 28 years in 1992. Since then, I have found my way back into the classroom and presently teach computer classes to kindergarten through grade 8 students in a private school. What a great thing when, later in your life, you can unite the two things that bring excitement and fulfillment to you...for me those are teaching and computers. </p>
      <h3>Hobbies</h3>
      <p>So many things that I love to do! Sewing, computer art with Photoshop, Illustrator and Painter, attempting to create web sites, as I have done for my <a href="http://stmatthew.us/" target="_blank">school</a>, are but a few.</p>
      <p>I also love listening to books on my iPod when walking, ironing, eating lunch or doing any mindless task. When could I have time to sit and read &quot;Pillars of the Earth&quot; or &quot;Crime and Punishment&quot;, &quot;Anna Karenina&quot; and so on. I am grateful to Audible.com! Reading time is reserved for books like &quot;Photoshop: Masking and Compositing&quot;. More time would be a blessing!</p>
      <h3>Goals</h3>
      <p>My greatest goal is, each day, to learn something new! Or, to deepen the understanding of things I think I know!</p>
      <h3>Conclusion</h3>
      <p>The fun of writing this was thinking about the things that bring me happiness and fulfillment so that I can perceive them in an objective and organized way. </p>
       <?php include('includes/date.php'); ?>
    </div>
  
    
   
  <!-- end #mainContent --></div>
  <?php include('includes/footer.php'); ?>
<!-- end #container --></div>

<div id="showsourcediv"><?php echo phpversion(); ?>
<hr />
<?php show_source('week1.php'); ?> 
<?php show_source('includes/header.php'); ?>
<?php show_source
('includes/moi.php'); ?> 
<?php show_source('includes/date.php'); ?> 
<?php show_source('includes/footer.php'); ?> 

</div>
</body>
</html>

<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>
<p><img src="images/moi.jpg" alt="Joanne's image" width="90" height="100" class="moi" /> <p align="center">  Today's day, date and time are
<?php 
echo date("l, F jS,  Y g:i:A");
?></p>
<div id="footer">
    
    <p align="center">Copyright R. Joanne Johnson, <?php echo date ("Y"?></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://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> </p>

    <!-- end #footer -->
     </div>