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
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by melbin View Post
    http://php.flashwebhost.com/melbin/result.php

    PHP Code:
    <?php
    $mark
    =85// Enter Mark between 1 and 100

    if ($mark 100){
        echo 
    "$mark/100 ???... INVALID MARK";
    }

    else if (
    $mark >= 80 and $mark <= 100){
        echo 
    'Congratulations You have got ' $mark ' Marks - Grade : Distinction';
    }

    else if (
    $mark >=60 and $mark <80) {
        echo 
    'Congratulations You have got ' $mark ' Marks - Grade : First Class';
    }

    else if (
    $mark >=50 and $mark <60) {
        echo 
    'Congratulations You have got ' $mark ' Marks - Grade : Second Class';
    }

    else if (
    $mark >=and $mark <50) {
        echo 
    'Sorry You did not pass the exam. Your Mark is ' $mark ' - Status : FAILED';
    }

    else {
        echo 
    'INVALID MARK';
    }
    Good script.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  2. #2
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    http://php.flashwebhost.com/sherly/discount.php

    Code:
    <?php 
     $over65=true; 
     $price = 3.00; 
     if ($over65) 
     { 
     $discount =.90; 
    echo  "You have received our senior's discount, your price is $" . $price*$discount; 
     } 
     else 
     { 
    echo "Sorry you do not qualify for a discount, your price is $" . $price; 
     } 
     ?>
    Last edited by sherlyk; 05-13-2014 at 07:30 AM.

  3. #3
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

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

    Code:
    <?php
    $fishsCanFly = 'yes';
    if ($fishsCanFly == 'yes') {
    echo 'then we can never have a fish curry' ;
     }
    if ( $fishsCanFly == 'no') {
    echo 'then we can have as much fish as we want' ;
     }

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

    Default

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

    Code:
    <?php
    $fishsCanFly = 'yes';
    if ($fishsCanFly == 'yes') {
    echo 'then we can never have a fish curry' ;
     }
    if ( $fishsCanFly == 'no') {
    echo 'then we can have as much fish as we want' ;
     }
    Nice program, fishes love water.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  5. #5
    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' 
    ;  
    }

  6. #6
    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
  •