• 09Nov

    More rules apply than you may think. You need to know the difference between certain symbols too.
    You need flash to play this tutorial.
    This tutorial goes over the following goals:
    Properly terminating statements
    What is a comment
    Double Quotes and Single Quotes
    Are things Set?
    What if…
    The Curly Brackets
    You can find this tutorial video on youtube here.

    Here are the sources used in this tutorial:
    simple.php
    <?php
    define("HAPPY", 22);
    
    if(isset($_REQUEST['s'])){
    $simple = (int)$_REQUEST['s'];
    
    }else{
    	$simple = 0;
    }
    
    $tires = $simple*HAPPY;
    $tires = 1.06*$tires;
    
    echo "You need to pay us $$tires in cash today for your $simple tires.";
    ?>

    Here are all the php functions used in this tutorial:

    Posted by Kloplop321 @ 8:00 pm

Leave a Comment

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