您好我正在构建自己的论坛,但这就是我必须将数据库中的“设置”日期设置为30-5-2012应该看看但是如何将它从数据库。我在MySQLI
中构建它以下是我在数据库中找到它时的样子
<form action="#" method="post" name="formular" onsubmit="return validerform ()">
<?php
if ($stmt = $mysqli->prepare('INSERT INTO `forum` (`title`, `tekst`, `dato`, `id_brugere`) VALUES (?, ?, ?, ?)')) {
$stmt->bind_param('ssss', $title, $tekst, $dato, $id_brugere);
//fra input ting ting..
$title = $_POST["title"];
$tekst = $_POST["tekst"];
$id_brugere = $_SESSION["user_id"];
$dato = date('d-m-Y');
$stmt->execute();
$stmt->close();
//er der fejl i tilgangen til table..
} else {
echo 'Der opstod en fejl i erklæringen: ' . $mysqli->error;
}
?>
<table border="0">
<tr>
<td id="tb-w_a"><p>Title</p></td>
<td>:</td>
<td><input type="text" name="title"></td>
</tr>
</table>
<textarea name="tekst" style="width:716px; height:170px;"></textarea><br />
<input type="submit" value="Opret indhold">
</form>
以下是我将其从数据库中取出时的外观
<?php
if ($stmt = $mysqli->prepare('SELECT id_forum, title, tekst, dato, id_brugere FROM `forum` ORDER BY `forum`.`id_forum` DESC LIMIT 0 , 30'))
{
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($id_forum, $title, $tekst, $dato, $id_brugere);
$count_res = $stmt->num_rows;
if($count_res > 0)
{
while ($stmt->fetch()) {
?>
<tr class="forumtoppen">
<td class="titleforum"><?php echo $title;?> - <a href="">Læse mere</a></td>
<td>Dato: <?php echo $dato;?></td>
</tr>
<?php
}
}
else
{
?>
<p>der er ingen overhovedet!.. hmm</p>
<?php
}
}
?>
在这里,我已经建立起来,必须转换为丹麦时间。
<?php echo $dato;?>
没有错误,但我必须将其建立为丹麦日期。
答案 0 :(得分:0)
为什么不在检索查询中使用mysql date_format函数? (php docs)
SELECT id_forum, title, tekst, date_format(dato,'%d-%m-%Y') as dato, id_brugere
FROM `forum`
ORDER BY `forum` . `id_forum` DESC LIMIT 0 , 30