PHP选择2个选项

时间:2013-11-15 10:03:29

标签: php post if-statement choice

我对整个PHP场景都很陌生,因为我刚在学校开始这个,大部分情况都很好,我学到了很多东西。但我遇到了一些问题。

我需要为KWU(电)做一个计算器。必须有选择支付率。 到目前为止,我想出了这个:

<?php
if (!empty($_POST['submit'])) {
    $KWU = $_POST['KWU'];
    if ('tarief1') {
        $bedrag = 0.50 * $KWU + 200;
    } else {
        $bedrag = 0.75 * $KWU + 100;
    }

    $totaal = $bedrag * 1.19;
    echo "KWU = $KWU </br>";
    echo "Bedrag =  $bedrag </br>";
    echo "Bedrag incl. btw = $totaal";
    echo "<br>";
    echo "<a href=\"energienota.php\">Nog een berekening</a>";
} else {
    ?>
    <html>
        <head>
            <title>winkelprijs</title>
        </head>
        <body>
            <h2>winkelprijs</h2>
            <form method='post' action=''>
                KWU <input name='KWU'></br>
                Tarief:</br>

                <select name="btwtarief">
                    <option value="tarief1" name="tarief1" id="tarief1">Tarief 1</option>
                    <option value="tarief2" name="tarief2" id="tarief1">Tarief 2</option>

                </select>
                <br>
                <input name='submit' type='submit' value='bereken'>
                <input name='reset' type='reset' value='wissen'>

            </form>
        </body>
    </html>

    <?php
}
?>

现在我不知道如何让$ tarief1和$ tarief2选择正常工作。我认为有一些关于POST的东西。 我希望有人可以帮助我,也很抱歉我的英语不好

1 个答案:

答案 0 :(得分:1)

只需更改此行:

if('tarief1')

if ($_POST['btwtarief'] == 'tarief1')

顺便说一下:您的name元素也不需要option属性。他们有nameselect元素:

<select name="btwtarief">
  <option value="tarief1">Tarief 1</option>
  <option value="tarief2">Tarief 2</option>
</select>
你可能需要

id属性,但我不这么认为你会...