• 10Nov

    Some really useful basics
    You need flash to play this tutorial.
    This tutorial goes over the following goals:
    If, else, then
    The Array
    Counting, does it exist?
    Print for Reading
    You can find this tutorial video on youtube here

    Here are the sources used in this tutorial:
    tut003.php
    <?php
    $names = array();
    $names['peon'] = "joe";
    
    $names['manager'] = "robert";
    //echo print_r($names); 
    echo 'The manager of the store is '.$names['manager'].' and his lowly servent is '.$names['peon'];
    
    ?>

    Here are all the php functions used in this tutorial:

    Posted by Kloplop321 @ 11:57 am

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.