我正在尝试在加载特定网址product_catalog.php?c=12
时隐藏输入按钮隐藏。
以下是product_catalog.php
中的按键代码:
echo "<INPUT type=\"text\" name=\"qty\" size=2 value=\"1\" class=\"text-pc\"><span class=\"small2\">kpl</span> ";
echo "<INPUT type=\"submit\" name=\"add\" value=\" \" id=\"lisaa\" class=\"add-to-basket\">";
如果用户正在浏览product_catalog.php?c=12
?
答案 0 :(得分:4)
使用简单的if
语句检查$_GET['c']
是否不等于12
:
if($_GET['c'] != '12') {
// put your echo statements here.
}
请注意,这是一个关于PHP基本控件结构的相当简单的问题。在继续项目之前,您可能希望通过阅读PHP手册来了解有关控制结构的更多信息。
这个答案涉及的概念:
PHP Manual: Control Structures
PHP Manual: if
PHP Manual: Superglobals