gpt4 book ai didi

javascript - 如果 POST 不为空则显示文本

转载 作者:行者123 更新时间:2023-11-28 13:26:09 25 4
gpt4 key购买 nike

好的,我有这个页面,其中有一些价格和东西。但最后你可以以百分比的形式给予折扣。

然后通过 POST 将该百分比发送到新页面。在这里我需要它显示类似“您已经给予 50% 的折扣。

但是,如果没有给出折扣并且 POST 中的百分比字段为空,则不得显示文本。

现在我得到了这样的东西

$procent .= $_POST['percent_discount'];



$text .= 'You have recived a discountf of';

$test = $text . $procent;

但是无论如何都会显示文本。如果百分比在 POST 中发送,您知道如何让它仅显示文本和百分比吗?

最佳答案

您可以使用 isset() 来检查值。就像这样:

if(isset($_POST['percent_discount'])){
// do something if its set here
}else{
// do something if its not set
}

为了与其他答案略有不同,您还可以使用简写 if:

$myString = (isset($_POST['percent_discount']) ? "You received " .$_POST['percent_discount'] . "!" : "We don't like you. No discount for you!");

等等...

希望这有帮助!

关于javascript - 如果 POST 不为空则显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28963732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com