如果db字段为空,我试图显示提交按钮。当我尝试只显示一个简单的文本时,它可以正常工作,但有没有办法显示提交表单按钮?
while($row = $result->fetch_assoc()) {
echo "<table><tr><td>". (empty($row['name'])? 'Submit button' : $row['name']) . "</td></tr></table>";
}
答案 0 :(得分:2)
只需打印</VirtualHost>
GracefulShutDownTimeout 3
。
ErrorLog /var/www/glinks.ga/error.log
CustomLog /var/www/glinks.ga/requests.log common
答案 1 :(得分:0)
你应该这样写
echo "<table><tr><td>". empty($row['name'])? '<input type="submit" value="Submit" name="submit">' : $row['name'] . "</td></tr></table>";
答案 2 :(得分:-2)
试试这个。
while($row = $result->fetch_assoc()) {
echo "<table><tr><td>". if(empty($row['name']) echo '<input type="submit" value="Submit" name="submit">' ;else echo $row['name']) . "</td></tr></table>";
}