将mysql内容在html上显示出来(时间戳格式转换)
将mysql内容在html上显示出来(时间戳格式转换)
效果:
代码:
<table border="1" cellpadding="10" cellspacing="0" align="left">
<tr><th>序号</th><th>操作系统</th><th>浏览器</th><th>IP地址</th><th>访问时间</th></tr>
<?php
//本地数据库为localhost,root为数据库的账号,toor为数据库的密码
$con = mysql_connect("数据库地址","数据库用户名","数据库密码");
if(!$con){
die(mysql_error());
}
mysql_select_db("web80",$con);//连接数据库80
$sql = mysql_query("select * from cjh_weapp_accessstatistics");//查询数据表student中的数据
mysql_query("set name utf8");
mysql_query("set college utf8");
$datarow = mysql_num_rows($sql); //长度
for($i=0;$i<$datarow;$i++){ //循环遍历出数据表中的数据
$sql_arr = mysql_fetch_assoc($sql);
$sno = $sql_arr['id'];
$system = $sql_arr['system'];
$browser = $sql_arr['browser'];
$ip = $sql_arr['ip'];
$time = $sql_arr['add_time'];
echo "<tr><td>$sno</td><td>$system</td><td>$browser</td><td>$ip</td><td>$time</td></tr>";
}
mysql_close($con);// 关闭数据库
?>
<br>
您的设备的时间:
<div id="times">
</div>
<script type="text/javascript">
function getD1(){
var date=new Date();
var d1=date.toLocaleString();
var div1=document.getElementById("times");
div1.innerHTML =d1;
}
setInterval("getD1();",1000);
</script>
————————————————
<br>
说明:
<br>
(1)网站测试中,数据仅供参考。
<br>
(2)终端设备访问本网站,将记录以及显示出访问设备的ip地址等网络信息方便排除网络故障,相关信息将定期清除。
<br> <br>
<a href="/index.php">可点此刷新查看最新数据<br></a>
<br>
Unix时间戳问题:
解决:
<table border="1" cellpadding="5" cellspacing="0" align="left">
<tr><th>序号</th><th>操作系统</th><th>浏览器</th><th>IP地址</th><th>访问时间</th></tr>
<?php
//本地数据库为localhost,root为数据库的账号,toor为数据库的密码
$con = mysql_connect("localhost","root","toorr");
if(!$con){
die(mysql_error());
}
mysql_select_db("web80",$con);//连接数据库80
$sql = mysql_query("select * from cjh_weapp_accessstatistics");//查询数据表student中的数据
mysql_query("set name utf8");
mysql_query("set college utf8");
$datarow = mysql_num_rows($sql); //长度
for($i=0;$i<$datarow;$i++){ //循环遍历出数据表中的数据
$sql_arr = mysql_fetch_assoc($sql);
$sno = $sql_arr['id'];
$system = $sql_arr['system'];
$browser = $sql_arr['browser'];
$ip = $sql_arr['ip'];
$time = $sql_arr['add_time'];
$t=date("Y-m-d H:i:s", $time);
echo "<tr><td>$sno</td><td>$system</td><td>$browser</td><td>$ip</td><td>$t</td></tr>";
}
mysql_close($con);// 关闭数据库
?>
效果:
示例:
<?php
$daku=mysql_connect("localhost","用户名","密码");
if(!$daku){die("error".mysql_error());}
mysql_select_db("web80",$daku);
mysql_query("set names utf8",$daku);
$xiaoku=mysql_query("select * from cjh_weapp_accessstatistics" ) or die (mysql_error());
?>
<table align="center" width="600" border="1"> <th>序号</th><th>操作系统</th><th>浏览器</th><th>IP地址</th><th>访问时间</th><th>操作</th>
<?php while ($biao=mysql_fetch_array ($xiaoku)){?>
<tr>
<td><?php echo $biao ['id'];?></td>
<td><?php echo $biao ['system'];?></td>
<td><?php echo $biao ['browser'];?></td>
<td><?php echo $biao ['ip'];?></td>
<?php $time1 = $biao['add_time'];?>
<td><?php echo $tt=date("Y-m-d H:i:s", $time1);?></td>
<td><a href="delete.php?id=<?php echo $biao ['id'];?>" onClick="return confirm ('yes?')">删除</a></td>
</tr>
<?php }
?>
</table>
效果:
、
2、本资源基本为原创,部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
3、本站大部分文章的截图来源实验测试环境,请不要在生产环境中随意模仿,以免带来灾难性后果。
转载请保留出处: www.zh-cjh.com珠海陈坚浩博客 » 将mysql内容在html上显示出来(时间戳格式转换)
作者: cjh
手机扫一扫,手机上查看此文章: |
一切源于价值!
其他 模板文件不存在: ./template/plugins/comment/pc/index.htm