php mysql 留言本應(yīng)用實例第1/2頁
更新時間:2009年03月16日 23:13:54 作者:
實例說明制作一個php+mysql留言本
復(fù)制代碼 代碼如下:
<?php
$hostname_conn = "localhost";
$database_conn = "test";
$username_conn = "root";
$password_conn = "1981427";
$conn = mysql_connect($hostname_conn, $username_conn, $password_conn);
?>
復(fù)制代碼 代碼如下:
<?php
//該函數(shù)用于將一般字符串轉(zhuǎn)換成SQL語句所需要的格式
function GetSQLValueString($theValue, $theType)
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
}
return $theValue;
}
?>
復(fù)制代碼 代碼如下:
<?php
session_start();
//如果Session不存在,則跳轉(zhuǎn)到Admin.php
if (!(isset($_SESSION['MM_Username']))) {
header("Location: admin.php");
exit;
}
?>
復(fù)制代碼 代碼如下:
<?php require_once('Connections/conn.php'); ?>
<?php
// *** Validate request to login to this site.
session_start();
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($accesscheck)) {
$GLOBALS['PrevUrl'] = $accesscheck;
session_register('PrevUrl');
}
if (isset($_POST['username'])) {
$loginUsername=$_POST['username'];
$password=$_POST['password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "adminmain.php";
$MM_redirectLoginFailed = "admin.php";
$MM_redirecttoReferrer = false;
mysql_select_db($database_conn, $conn);
$LoginRS__query=sprintf("SELECT adminname, password FROM admin WHERE adminname='%s' AND password='%s'",
get_magic_quotes_gpc() ? $loginUsername : addslashes($loginUsername), get_magic_quotes_gpc() ? $password : addslashes($password));
$LoginRS = mysql_query($LoginRS__query, $conn) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
//declare two session variables and assign them
$GLOBALS['MM_Username'] = $loginUsername;
$GLOBALS['MM_UserGroup'] = $loginStrGroup;
//register the session variables
session_register("MM_Username");
session_register("MM_UserGroup");
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css"><!--
.style1 {font-size: 18px;
font-weight: bold;
}
.style2 {font-size: 14px}
--></style><style type="text/css" bogus="1">.style1 {font-size: 18px;
font-weight: bold;
}
.style2 {font-size: 14px}</style>
</head>
<body>
<p align="center"><span class="style1">留言板 - 管理登陸</span></p>
<p align="center"><span class="style2"><a href="viewposts.php" href="viewposts.php">瀏覽留言</a> | <a href="newpost.php" href="newpost.php">發(fā)表留言</a></span></p>
<form name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<table width="239" border="0" align="center">
<tr>
<td width="73">用戶名:</td>
<td width="156"><input name="username" type="text" id="username"></td>
</tr>
<tr>
<td>密碼:</td>
<td><input name="password" type="password" id="password"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重設(shè)"></td>
</tr>
</table>
</form>
<p align="center"> </p>
</body>
</html>
相關(guān)文章
Yii操作數(shù)據(jù)庫實現(xiàn)動態(tài)獲取表名的方法
這篇文章主要介紹了Yii操作數(shù)據(jù)庫實現(xiàn)動態(tài)獲取表名的方法,涉及Yii框架針對數(shù)據(jù)庫的動態(tài)操作技巧,需要的朋友可以參考下2016-03-03
Zend Framework框架的session會話周期及次數(shù)限制使用示例
這篇文章主要介紹了Zend Framework框架的session會話周期及次數(shù)限制使用示例,需要的朋友可以參考下2014-03-03
ThinkPHP采用<volist>實現(xiàn)三級循環(huán)代碼實例
這篇文章主要介紹了ThinkPHP采用<volist>實現(xiàn)三級循環(huán)代碼實例,通過實例加深讀者對<volist>標簽用法的認識,需要的朋友可以參考下2014-07-07
Linux平臺中使用PHP把word轉(zhuǎn)pdf的實現(xiàn)方法
下面小編就為大家?guī)硪黄狶inux平臺中使用PHP把word轉(zhuǎn)pdf的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-11-11
CI框架封裝的常用圖像處理方法(縮略圖,水印,旋轉(zhuǎn),上傳等)
這篇文章主要介紹了CI框架封裝的常用圖像處理方法,涉及針對圖像的縮略圖、水印、旋轉(zhuǎn)、上傳等操作,需要的朋友可以參考下2016-11-11

