如果不运行或评估,则简写
我基本上是在检查数据库中的用户下载限制,以及他们的限制是否为 < 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要在该行中放置一个回显:
You need to place an echo in the line:
不要忘记
之后的
echo
。Don't forget the
echo
after<?php
.你必须回应它
You have to echo it
应该是
<?php ($page...
should be
<?php echo ($page...