精华区 [关闭][返回]

当前位置:网易精华区>>讨论区精华>>编程开发>>● PHP>>功能代码>>留言板>>转载一个php操作mysql的留言版的例子4

主题:转载一个php操作mysql的留言版的例子4
发信人: zawenhui()
整理人: jackyz(2000-08-10 12:23:32), 站内信件
//connect.inc.php
<?
$hostname = "127.0.0.1"; /* Your MySQL-Host */
$username = "root"; /* Your MySQL-Username */
$password = "";/* Your MySQL-Password */
$userstable = "book"; /* MySQL table created to store the data */
$dbName = "book";
$limit = 5; /* How many Entries should be shown on each Page? */
$zone = MET; /* The Timezone you and you Customers are in. i.e. MET is
Europe */
$header = "./header.inc.php3"; /* Your Header File */
$footer = "./footer.inc.php3"; /* Your Footer File */
$sendmail = "no"; /* Entry will be mailed to you. Comment out if not u
sed. */
$mailadress = "[email protected]"; /* Email-Address where the Ent
ries should be mailed to. */
MYSQL_CONNECT($hostname, $username, $password) OR DIE("Unable to conne
ct to database");
@mysql_select_db( "$dbName") or die( "Unable to select database");
?>
//待续

--
████████████████████████████████
█  ╭──────────────────────────╮  █
█  │最憎人对住我讲英文,最憎人讲日文,最憎人偏偏唔识讲广│  █
█  │州话,使乜望住我啊,就系讲紧你。                    │  █
█  │~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~            │  █
█  │ oicq:9880798                                       │  █

※ 来源:.月光软件站 http://www.moon-soft.com.[FROM: 202.104.73.145]

[关闭][返回]