按钮仅在我们支持订单的邮政编码时才显示

时间:2018-11-28 06:41:46

标签: php

背景

我们有一个在线购物网站,客户下订单,然后他们在地址部分输入邮政编码。...

我们将订单信息保存在do_order表中,并将受支持的邮政编码保存在shippment_details表中。...

enter image description here enter image description here

我们在表格中列出了所有订单,如下图所示。

要求:仅当我们支持该订单的邮政编码时,我们才希望在订单ID下方显示 support 按钮。...

问题:但即使我们不支持该订单的邮政编码,该订单下方也会显示“支持”按钮。

enter image description here

我使用查询错误吗?

<?php

$star="select * from shippment_details where xpressbee='xpressbee'";
$resultstar = $db_handle2->runSelectQuery($star);

if($resultstar)
    { 
       if($orderrecords[$k]["tracking_id"]=='')
       {
?>
    <input type="button" name="shipment" id="xpress" value="support" />

<?php }}
?>

1 个答案:

答案 0 :(得分:1)

尝试以下代码

<?php
$star="select * from shippment_details where xpressbee='xpressbee' and pincode='$orders_pincode_here'";
$resultstar = $db_handle2->runSelectQuery($star);
if($resultstar)
{ 
?>
<input type="button" name="shipment" id="xpress" value="support" />
<?php }
?>