Results 1 to 10 of 42

Thread: Day 4 - Decision Making - Become PHP Expert in 30 days

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

    http://php.flashwebhost.com/stefin/if_greater.php

    Code:
    <?php
    $totalScoreRequiredToUnlockTheNextLevel = 8000;
    $playerName = 'stefin';
    $yourScore = 16000;
    if ($yourScore > $totalScoreRequiredToUnlockTheNextLevel) {
    echo 'Congratulations ' . $playerName . ' ! hurrah You Have Cleared The Level your score is' .  $yourScore . ' point' 
    ;  
    }

  2. #2
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by stefin View Post
    http://php.flashwebhost.com/stefin/if_greater.php

    Code:
    <?php
    $totalScoreRequiredToUnlockTheNextLevel = 8000;
    $playerName = 'stefin';
    $yourScore = 16000;
    if ($yourScore > $totalScoreRequiredToUnlockTheNextLevel) {
    echo 'Congratulations ' . $playerName . ' ! hurrah You Have Cleared The Level your score is' .  $yourScore . ' point' 
    ;  
    }

    You win, dragon eggs are on the way
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •