如果不运行或评估,则简写

发布于 2024-11-09 11:25:18 字数 415 浏览 0 评论 0原文

我基本上是在检查数据库中的用户下载限制,以及他们的限制是否为 < 1 我想禁用页面上的输入。

<input type="text" name="link"<?php ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />

页面运行时,输入不会被禁用,并且我的页面上没有任何 disabled="1" 标记。我已经验证 $page["downloads_left"] 小于 1,确实如此。它是 0。

即使当我添加一个要输出的字符串(如果此 IF 语句计算结果为 false)时,它也不会显示在标记中。

任何人都可以提供任何帮助吗?干杯。

I'm basically checking a users download limit in my database, and if their limit is < 1 I want to disable a input on my page.

<input type="text" name="link"<?php ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />

When the page is run, the input is not disabled and I don't have any disabled="1" markup on my page. I have verified that $page["downloads_left"] is less than 1, and it is. It's 0.

Even when I add a string to be outputted if this IF statement evaluates false, it doesn't show in the markup.

Can anyone provide any help? Cheers.

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

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

发布评论

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

评论(4

樱花细雨 2024-11-16 11:25:18

您需要在该行中放置一个回显:

<input type="text" name="link"<?php echo ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />

You need to place an echo in the line:

<input type="text" name="link"<?php echo ($page["downloads_left"] < 1 ? " disabled=\"1\"" : ""); ?> />
番薯 2024-11-16 11:25:18

不要忘记 之后的 echo

Don't forget the echo after <?php.

执笏见 2024-11-16 11:25:18

你必须回应它

<?php echo ($page['downloads_left'] < 1) ? " disabled='1' " : ''?>

You have to echo it

<?php echo ($page['downloads_left'] < 1) ? " disabled='1' " : ''?>
把昨日还给我 2024-11-16 11:25:18

应该是

<?php ($page...

should be

<?php echo ($page...

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