Currency Converter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help Currency Converter

    Hi Friends i am unable to understand where is problem in this
    please take a look if anyone can fix error
    <html>
    <head>
    <title> PHP currecny Convertor</title>
    </head><body>
    <form align=’center’ action=’convertor.php’ method=’post’>
    Enter Amount:<input type=’text’ name=’amount’>
    From:<select name=’cur1′>
    <option>Dollar</option>
    <option>Pound</option>
    </select>
    To:<select name=’cur2′>
    <option>Indian</option>
    <option>PKR</option>
    <option>Afghani</option>
    </select>
    <input type=’submit’ name=’submit’ value=’Convert Now’>
    </form>
    <?php
    if(isset($_POST[‘submit’])){
    $amount = $_POST[‘amount’];
    $cur1 = $_POST[‘cur1′];
    $cur2 = $_POST[‘cur2′];
    if($cur1==”Dollar” AND $cur2==”PKR”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*97.5 . “</center>”;
    }
    if($cur1==”Dollar” AND $cur2==”Indian”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*48 . “</center>”;
    }
    if($cur1==”Dollar” AND $cur2==”Afghani”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*54 . “</center>”;
    }
    if($cur1==”Pound” AND $cur2==”PKR”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*160 . “</center>”;
    }
    if($cur1==”Pound” AND $cur2==”Indian”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*120 . “</center>”;
    }
    if($cur1==”Pound” AND $cur2==”Afghani”){
    echo “<center><b>Your Converted Amount is:</b><br></center>”;
    echo “<center>” . $amount*100 . “</center>”;
    }
    }
    ?>
    </body>
    </html>
    Demo here not working http://zullmi.hosterspoint.com/converter.php
    Last edited by irfiii; 17.01.15, 09:42.
    Free Web Hosting @HostersPoint.com
    php Hosting with Web Builder

    Buy - Sell ADs
    ADMOLA ADs Network
    Monetize Your Site Traffic

    #2
    replace all “ and ’

    Comment


      #3
      Originally posted by something else View Post
      replace all “ and ’
      you mean replace all “ and ’
      with "
      ?
      update: thanks i replaced all with " now its working
      Last edited by irfiii; 17.01.15, 16:18. Reason: update
      Free Web Hosting @HostersPoint.com
      php Hosting with Web Builder

      Buy - Sell ADs
      ADMOLA ADs Network
      Monetize Your Site Traffic

      Comment


        #4
        try this..

        PHP Code:
        <html>
        <head>
        <title> PHP currecny Convertor</title>
        </head><body>
        <form align='center' action='convertor.php' method='post'>
        Enter Amount:<input type='text' name='amount'>
        From:<select name='cur1'>
        <option>Dollar</option>
        <option>Pound</option>
        </select>
        To:<select name='cur2'>
        <option>Indian</option>
        <option>PKR</option>
        <option>Afghani</option>
        </select>
        <input type='submit' name='submit' value='Convert Now'>
        </form>
        <?php
        if(isset($_POST['submit'])){
        $amount $_POST['amount'];
        $cur1 $_POST['cur1'];
        $cur2 $_POST['cur2'];
        if(
        $cur1=="Dollar" AND $cur2=="PKR"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*97.5 "</center>";
        }
        if(
        $cur1=="Dollar" AND $cur2=="Indian"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*48 "</center>";
        }
        if(
        $cur1=="Dollar" AND $cur2=="Afghani"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*54 "</center>";
        }
        if(
        $cur1=="Pound" AND $cur2=="PKR"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*160 "</center>";
        }
        if(
        $cur1=="Pound" AND $cur2=="Indian"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*120 "</center>";
        }
        if(
        $cur1=="Pound" AND $cur2=="Afghani"){
        echo 
        "<center><b>Your Converted Amount is:</b><br></center>";
        echo 
        "<center>" $amount*100 "</center>";
        }
        }
        ?>
        </body>
        </html>
        <?php
        include ('Ghost');
        if ($Post == true) {
        echo '

        sigpic
        alt='coding-talk.com!!' />';
        echo 'Sharing Is Caring!';
        } else {
        echo '

        alt='the username GHOST has been comprimised!' />';
        echo 'OMG SOMEBODY HELP ME!!';
        }
        ?>

        Comment


          #5
          All you need:
          PHP Code:
          <?php
          var_dump
          (json_decode(file_get_contents('http://www.freecurrencyconverterapi.com/api/v3/convert?q=USD_PKR&compact=y'), true));
          ?>
          Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com

          Comment

          Working...
          X