0

我正在尝试制作一个计算器,该计算器将从用户那里获取输入,并为他们估算如果他们使用各种不同的 VoIP 服务将节省多少钱。

我已经这样设置了:

<form method="get" action="voip_calculator.php">
  How much is your monthly phone bill? 
    <input name="monthlybill" type="text" value="$" size="8">

  <p><input type="submit" name="Submit" value="Submit">
  </p>
</form>

在我指向的页面 voipcalculator.php 上,我想调用“monthlybill”,但我不知道该怎么做。我也不知道如何让它对行中的数字进行减法。

这对您来说可能很简单,但对我来说非常令人沮丧,我谦虚地寻求一些帮助。谢谢!

这是来自 voip_calculator 的相关内容,您也可以单击 url 并提交一个数字以在 (in)action 中查看它。我尝试了很多次都没有成功:

<table width="100%;" border="0" cellspacing="0" cellpadding="0"class="credit_table2" >

<tr class="credit_table2_brd">
    <td class="credit_table2_brd_lbl" width="100px;">Services:</td>
    <td class="credit_table2_brd_lbl" width="120px;">Our Ratings:</td>
    <td class="credit_table2_brd_lbl" width="155px;">Your Annual Savings:</td>
</tr>

Your monthly bill was <?php echo 'monthlybill' ?>

<?php echo "$monthlybill"; ?>
<?php echo "monthlybill"; ?>
<?php echo '$monthlybill'; ?>
<?php echo 'monthlybill'; ?>

<?php
$monthybill="monthlybill";
$re=1;
$offer ='offer'.$re.'name';
$offername= ${$offer};
while($offername!="") {
    $offerlo ='offer'.$re.'logo';
    $offerlogo=${$offerlo};
    $offerli ='offer'.$re.'link';
    $offerlink=${$offerli};
    $offeran ='offer'.$re.'anchor';
    $offeranchor=${$offeran};
    $offerst ='offer'.$re.'star1';
    $offerstar=${$offerst};
    $offerbot='offer'.$re.'bottomline';
    $offerbottomline=${$offerbot};
    $offerca ='offer'.$re.'calcsavings';
    $offercalcsavings=${$offerca};

    echo '<tr >
            <td >
                <a href="'.$offerlink.'" target="blank">
                    <img src="http://www.nextadvisor.com'.$offerlogo.'" alt="'.$offername.'" />
                </a>
            </td>
            <td >
                <span class="rating_text">Rating:</span>
                <span class="star_rating1">
                    <img src="IMAGE'.$offerstar.'" alt="" />
                </span>
                <br />
                <div style="margin-top:5px; color:#0000FF;">
                    <a href="'.$offerlink.'" target="blank">Go to Site</a>
                    <span style="margin:0px 7px 0px 7px;">|</span>
                    <a href="'.$offeranchor.'">Review</a>
                </div>
            </td>
            <td >'.$offercalcsavings.'</td>  
        </tr>';
    $re=$re+1;
    $offer ='offer'.$re.'name';
    $offername= ${$offer};

}
?>

offercal(1,2,3,4,5,6,7) Savings 调用一个名为 values.php 的文件,它们的定义如下:

$offer1calcsavings="24.99";
$offer2calcsavings="20.00";
$offer3calcsavings="21.95";
$offer4calcsavings="23.95";
$offer5calcsavings="19.95";
$offer6calcsavings="23.97";
$offer7calcsavings="24.99";
4

3 回答 3

1

我做的一件事是这个

echo "<pre>";
print_r($_GET);
echo "</pre>";

把它放在你的接收端的某个地方,你就会了解正在发生的事情。

于 2008-12-04T01:05:08.190 回答
1

没有为答案提供足够的详细信息,但让我们简化并假设您在数组中有“储蓄”数字,例如 companySavings 。那么,您需要从用户指定的值中减去这些值,对吗?你不需要打电话(如果你愿意,你可以......)

当用户单击“提交”并再次加载页面时,将月度账单拉到一个变量中,例如

$monthlyBill = $_GET['monthlybill']; //you should do some checking to prevent attacks but that's another matter

然后,当您构建储蓄列表时,它看起来像这样

    <?php
     //...code for the rest of the page and starting your table

    foreach($companySavings as $savings){//insert each row into the table
      echo("<tr><td>".(comapnyName/Image whatever..)."</td><td>$".$monthlyBill-$savings."</td></tr>);
    }
   //... end the table and rest of code
   ?>
于 2008-12-04T01:22:15.347 回答
0

您需要从 QueryString 中获取值并将其放入 PHP 变量中。

像这样:

$monthlyBill = $_GET['monthlybill'];

现在变量 $monthlyBill 包含来自 QueryString 的值。

要显示它:

echo "Your monthly bill is: $monthlyBill";
于 2008-12-04T00:58:35.067 回答