输入按钮隐藏基于url

发布于 2024-11-16 22:08:02 字数 458 浏览 1 评论 0原文

我试图在加载特定 URL 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>&nbsp;";
echo "<INPUT type=\"submit\" name=\"add\" value=\"&nbsp;\" id=\"lisaa\" class=\"add-to-basket\">";

如果用户正在浏览 product_catalog.php?c=12,如何隐藏它?

I am trying to hide an input button hide when the specific URL product_catalog.php?c=12 is loaded.

Here is my button code in 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\">";

How do I hide it if the user is browsing product_catalog.php?c=12?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尐籹人 2024-11-23 22:08:02

使用简单的 if 语句检查 $_GET['c'] 是否不等于 12

if($_GET['c'] != '12') {
  // put your echo statements here.
}

请注意,这是一个相当简单的问题关于PHP的基本控制结构。在继续您的项目之前,您可能想通过阅读 PHP 手册来了解有关控制结构的更多信息。

此答案中涉及的概念:

PHP 手册:控制结构
PHP 手册:if
PHP 手册:超级全局

Use a simple if statement to check if $_GET['c'] is not equal to 12:

if($_GET['c'] != '12') {
  // put your echo statements here.
}

Note that this is a fairly simple question about a base control structure of PHP. You might want to learn more about control structures by reading the PHP Manual before continuing with your project.

Concepts touched in this answer:

PHP Manual: Control Structures
PHP Manual: if
PHP Manual: Superglobals

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文