我自己就是研究部明白了,求教高人~
数据库我用的mysql,名字是memo,表是liuyanben,里面有两项:content和riqi
我连接数据库就是连不上了,求教高人
这个是我的代码
<html>
<head>
<title> 我的留言本</title>
<body>
<h1>我的留言本,记下你的话</h1>
<hr>
<?php
$conn = @ mysql_connect("localhost", "root", "");
mysql_select_db("memo",$conn);
$query = "SELECT * FROM `liuyanben` order by id desc";
$result = mysql_query($query);
while(($row=mysql_fetch_array($query)){
?>
<table>
<tr>
<td>发表时间:<?=$row[riqi]?></td>
</tr>
<tr>
<td>内容:<?echo htmtocode($row[content]);
?></td>
</tr>
</table>
<?
}
?>
<from>
内容:<input type="text"name="content"/>
日期:<input type="text"name="riqi"/>
<input name="submit" type="submit" value="提交">
</from>
</body>
</html>