?? functions.php
字號(hào):
<style type="text/css">
<!--
.STYLE1 {
font-size: 36px;
font-weight: bold;
color: #990000;
}
-->
</style>
<center>
<table width="90%" height="19">
<tr>
<td colspan="2" bgcolor="#FF9966" ><div align="center" class="STYLE1">新聞發(fā)布系統(tǒng)</div></td>
</tr>
<tr>
<td width="51%" ><font size=2><div align="center"><a href="http://localhost/news/index.php">新聞瀏覽</a> || <a href="http://localhost/news/admin/index.php">新聞管理 || <a href="http://localhost/news/search.php">新聞搜索 </a></div></font></td>
</tr>
</table>
</center>
<?php
function show_news(){
require("admin/config.php");
mysql_connect($sqlhost,$sqluser,$sqlpass);
mysql_select_db($sqldb);
$sqlsel = "SELECT subject,news,datetime FROM fubonews ORDER BY datetime DESC";
$result = mysql_query($sqlsel) or die(mysql_error() . "<br>Could not select news.");
while($r = mysql_fetch_array($result)){
echo <<<ENDIT
<table border="1" cellspacing="1" cellpadding="1" width="90%">
<tr>
<td width="15%" bgcolor="#FFCCFF"><font size=2>新聞主題:</font>
</td>
<td >
<font size=2>$r[subject]</font>
</td>
</tr>
<tr>
<td><font size=2>發(fā)布時(shí)間:</font>
</td>
<td >
<font size=2>$r[datetime]</font>
</td>
</tr>
<tr>
<td><font size=2>新聞內(nèi)容:</font>
</td>
<td >
<font size=2>$r[news]</font>
</td>
</tr>
</table>
ENDIT;
}
}
?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -