gpt4 book ai didi

php - 如果为空则显示提交按钮

转载 作者:行者123 更新时间:2023-11-29 22:21:19 25 4
gpt4 key购买 nike

如果数据库字段为空,我尝试显示提交按钮。当我尝试仅显示简单文本时它工作正常,但是有没有办法显示提交表单按钮?

while($row = $result->fetch_assoc()) {
echo "<table><tr><td>". (empty($row['name'])? 'Submit button' : $row['name']) . "</td></tr></table>";
}

最佳答案

只需打印 html

echo "<table><tr><td>". empty($row['name']) ? '<input type="submit" value="Submit" name="submit">'  : $row['name'] . "</td></tr></table>";

关于php - 如果为空则显示提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30681708/

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