gpt4 book ai didi

php - 时间戳 php 样式

转载 作者:太空宇宙 更新时间:2023-11-04 15:29:46 25 4
gpt4 key购买 nike

我有我希望如何为 CSS 显示日期的跨度:

.date {
float:left;
position:relative;
margin-right:10px;
padding:45px 5px 0;

}

.date .month{
text-transform:uppercase;
font-size:25px;

}

.date .day{
font-size:35px;
line-height:45px;
position:absolute;
left:5px;top:0;

}

.date .year{
display:block;
position:absolute;
right:-5px;
top:15px;
-webkit-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-ms-transform:rotate(-90deg);
-o-transform:rotate(-90deg)

}

在 PHP 的输出中最终看起来像这样:http://puu.sh/1uqZ2

我现在已经设置了 CMS(新闻系统),但我该如何让它看起来像图片中显示的时间戳?我是否必须每行设置每个标签,比如 $day $month $year?

这是我当前的“addarticle.php”页面:

<?php

$submit = $_POST['submit'];
$remove = $_POST['remove'];
$news_content = $_POST['newscontent'];
$news_title = mysql_real_escape_string($_POST['newstitle']);
$news_author = mysql_real_escape_string($_POST['newsauthor']);
$news_date = date("l, F jS Y");

if ($submit)
{

$namecheck = mysql_query("SELECT news_title FROM articles WHERE news_title='$news_title'");
$count = mysql_num_rows($namecheck);

if ($count!=0)
{
die ('<div class="red" style="margin-bottom: 0;">Article <strong>'.$news_title.'</strong> already exists!</div>
<meta http-equiv="REFRESH" content="2;url=index">
');
}

if ($news_title&&$news_content&&$news_author)
{

$query = mysql_query("

INSERT INTO articles VALUES ('','$news_title','$news_content','$news_date','$news_author')

");
echo "<div class='green'>You have posted <strong>$news_title</strong> !</div>";

}else {

echo '<div class="red">You must fill in all fields!</div>';
}
}

?>

<form action="" method="POST">

Article Title :
<br />
<input name="newstitle" type="text" class="userpass" />
<br /><br />
Article Author :
<br />
<input name="newsauthor" type="text" class="userpass" value="<?php echo $_SESSION['username'] ?>" />
<br /><br />
Article Content :
<br />
<textarea id="elm1" name="newscontent" rows="7" cols="30" style="width: 100%"> </textarea>
<br />
<input name="submit" type="submit" class="button" value="Post News" />
<a href="viewarticle"><input name="edit" type="button" class="button" value="Edit Article" /></a>

</form>

最佳答案

我假设有一个包含文章日期的数据变量 $date。结合您的样式表,以下代码应输出示例中所示的日期。

$day   = date('d', $date);
$month = date('m', $date);
$year = date('Y', $date);

echo '<div class="date">'
. '<span class="month"' . $month . '</span>'
. '<span class="day">' . $day . '</span>'
. '<span class="year">' . $year . '</span>'
. '</div>';

我的代码与 SQL 无关,并假定您已经知道文章的日期。为了获得更好的答案,您应该删除所有不必要的代码并为我们提供一个最小的示例。

我在您的代码中找不到从数据库中获取日期的部分。通常在您的数据库中有一个 id 列,它是您的主键。如果是这样,您可以使用此 SQL 查询获取文章的日期。

SELECT news_date FROM articles WHERE id = ...

关于php - 时间戳 php 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13559149/

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