Category Archives: php

php简单留言板

connection.php <?php $conn = mysql_connect(‘localhost’,’root’,”) or die (“不能连接数据库”); mysql_select_db(“book”,$conn) or die (“不能选择数据库”); //mysql_close($conn); ?> index.php <form method=”post” action=”insert.php”> name:<input type=”text” name=”name”><br> 内容:<textarea rows=”5″ size=8 name=”info”> </textarea><p> <input type=”submit” value=”提交” name=”act1″ ><input type=”submit” value=”重置” name=”act2″><br> </form> <?php //header(“Content-Type:text/html; charset=gbk;”); echo “<hr><br>”; … Continue reading

Posted in php | Leave a comment