download92000 2014-10-21 21:07
浏览 75
已采纳

HTML / php表中的MySql datetime字段仅显示使用表单时的日期

I have a datetime MySql field named down_stamp that I have populating an HTML table via php:

<? $sql_el = "SELECT * FROM events WHERE loc_id = '$lid'";
$result_el = mysql_query($sql_el);
while ($row_el = mysql_fetch_array($result_el)) {
?>
<tr>
  <td><?=$row_el['down_stamp']?></td>
</tr>
</form>
<? } ?>

This produces results in the format I'd like: 2013-09-15 08:30:00. However, I'd like to make this field modifiable, so if I just convert it into a form element like this:

<form name="fm_editevent" method="post">
<tr>
  <td><input name="down_stamp_ed" required="required" value=<? echo $row_el['down_stamp']; ?> type="text"></td>
  <td><input value="Update" type="submit" name="update_el"></td>     
</tr>
</form>
<? } ?>

Then the down_stamp field only displays the date: 2013-09-15. I don't think it's a width issue as there's plenty of room in the text box. I tried adding <td width=100> (twas a guess). I also tried to declare the time in php when expanding the variable, which just gave me an error and the date 1970-01-01 01:33:33

<td><input name="down_stamp_ed" required="required" value=<? echo date("Y-m-d H:i:s", $row_el['down_stamp']);?> ></td>

How can I get the full datetime field data to echo in this form text box?

  • 写回答

3条回答 默认 最新

  • dousaoxiancy199896 2014-10-21 21:16
    关注

    You missed the quotation marks...

    Use:

    <td><input name="down_stamp_ed" required="required" value="<? echo $row_el['down_stamp']; ?>" type="text"></td>
    

    (without the quotation marks the result would look like this:

    <td><input name="down_stamp_ed" required="required" value=2013-09-15 01:33:33 type="text"></td>
    

    and just because you're lucky your browser interprets "2013-09-15" as the value of the field ;-)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了