如何以可编辑形式显示cakephp查询结果[已关闭]

wbgh16ku  于 2022-11-11  发布在  PHP
关注(0)|答案(1)|浏览(128)

已关闭。此问题需要更多的focused。当前不接受答案。
**想要改进此问题吗?**更新问题,使其仅关注editing this post的一个问题。

上个月关门了。
Improve this question
如何以可编辑的形式显示cakephp查询结果,以便在输入表单中显示以供编辑。下面的代码在表中显示查询结果

<?php foreach ($examination as $key => $exam): ?>
<td><?php echo !empty($exam['ExamCalendar']['reg_exam_date']) ? date('d-m-Y', strtotime($exam['ExamCalendar']['reg_exam_date'])) : '--'; ?></td>
<?php endforeach; ?>
fquxozlt

fquxozlt1#

我使用下面的代码解决了问题

<table>
<tr>                                    
<?php foreach ($examination as $key => $exam): ?>
<td>
<?php echo !empty($exam['ExamCalendar']['reg_exam_date']) ? $this->Form->input('Result Verification Status',['value'=>date('d-m-Y', strtotime($exam['ExamCalendar']['reg_exam_date']))]) : '--'; ?>
</td>
 <?php endforeach; ?>
</tr>
</table>

这将显示一个带有查询值的输入框

相关问题