|
|
|
แสดง username และpassword หลังสมัครสมาชิกเสร็จจะเขียนโค้ตอย่างไงครับ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>เพิ่มข้อมูลผู้ดูและรบบ</title>
</head>
<body>
<?
if($_POST["username"]!=""){
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("register");
$strSQL = "INSERT INTO admin ";
$strSQL .="(username,password,status) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["username"]."','".$_POST["password"]."','".$_POST["status"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "<script language='javascript'>alert('เพิ่มข้อมูลเรียบร้อยแล้วค่ะ กรุณารอสักครู่');</script>";
#echo "<meta http-equiv=refresh content=0;URL=regisok.php>";
echo 'USERNAME : '.$_POST['username'].'<br>PASSWORD : '.$_POST['password'].'<br>';
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
}
?>
</body>
</html>
|
|
|
|
|
Date :
2009-03-09 15:40:58 |
By :
xboy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เดี๋ยวจะลองดูน่ะครับขอบคุณครับ
|
|
|
|
|
Date :
2009-03-09 17:58:27 |
By :
GhostLocal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|