|
|
|
ช่วยดูโค้ด สมัครสมาชิกให้หน่อยนะครับ ผมทำแบบฟอร์มสมัครสมาชิก ตามภาพครับ |
|
|
|
|
|
|
|
ผมทำแบบฟอร์มสมัครสมาชิก ตามภาพครับ ปรากฎว่า รับค่าจากไฟล์ user_addcus.php เข้าสู่ user_insertcus.php ปรากฎว่า ใน PhpMyadmin ไม่ปรากฎข้อมูลครับ มันโชว์ผลเป็นตารางเปล่าให้
รบกวนช่วยดูหน่อยนะครับ
จากภาพ
รับข้อมูลตามตัวแปรดังภาพครับ user_addcus.php
เข้าสู่อีกหน้านึง user_insertcus.php
หลังจากนั้น ผมเข้ามาตรวจสอบค่าว่าเข้าฐานข้อมูลหรือไม่ ปรากฎว่า เป็นดังภาพครับ
โค้ดที่ผมใช้
<?php
$hostname = "localhost";
$user = "root";
$password = "1234";
$dbname = "project";
$tblname = "member";
mysql_connect($hostname, $user, $password) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES TIS620");
$sql = "select mem_user from member where mem_user='$mem_user'" ;
$result = mysql_query($sql) ;
$numrow = mysql_num_rows($result) ;
if($numrow!=0) {
echo "<script language='javascript'>alert('ขออภัย ชื่อสมาชิกนี้ไม่สามารถใช้งานได้ กรุณาเปลี่ยนใหม่');</script>";
echo "<meta http-equiv='refresh' content='0 ;url=user_addcus.php'>" ;
exit() ;
}
$sql1 = "insert into $tblname (mem_name,mem_surname,mem_email,mem_user,mem_password,pos_id)
values ('$mem_name,$mem_surname,$mem_email,$mem_user,$mem_password,$pos_id)";
$dbquery1 = mysql_db_query($dbname,$sql1);
mysql_close();
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-02 07:31:07 |
By :
chonsenger |
View :
4677 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql1 = "insert into $tblname (mem_name,mem_surname,mem_email,mem_user,mem_password,pos_id)
values ('$_POST[mem_name],$_POST[mem_surname],$_POST[mem_email],$_POST[mem_user],$_POST[mem_password],$_POST[pos_id])";
|
|
|
|
|
Date :
2010-02-02 07:41:34 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณ xbeginner01
ผมลองแล้ว ไม่ได้เหมือนเดิมครับ
|
|
|
|
|
Date :
2010-02-02 07:59:37 |
By :
chonsenger |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในฟอร์ม ตั้งชื่อ textbox เป็น $ นำหน้า หรือ แค่ mem_xxx อย่างเดียวอ่ะครับ?
|
|
|
|
|
Date :
2010-02-02 08:41:48 |
By :
yomaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
phpMySQLCheckExistRecordAddForm.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form action="phpMySQLCheckExistRecordAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="160"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="70"> <div align="center">Budget </div></th>
<th width="70"> <div align="center">Used </div></th>
</tr>
<tr>
<td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
<td><input type="text" name="txtName" size="20"></td>
<td><input type="text" name="txtEmail" size="20"></td>
<td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
<td align="right"><input type="text" name="txtBudget" size="5"></td>
<td align="right"><input type="text" name="txtUsed" size="5"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
Screenshot
phpMySQLCheckExistRecordAddSave.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer WHERE CustomerID = '".$_POST["txtCustomerID"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "CustomerID already exist.";
}
else
{
$strSQL = "";
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
}
mysql_close($objConnect);
?>
</body>
</html>
Screenshot
Go to : PHP MySQL กับ Register Form ทำระบบ สมัครสมาชิกเก็บข้อมูลง่าย ๆ เช่น รหัสสมาชิก (Username) รหัสผ่าน (Password)
|
|
|
|
|
Date :
2010-02-02 08:57:03 |
By :
comsueksa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----
$sql1 = "insert into $tblname (mem_name,mem_surname,mem_email,mem_user,mem_password,pos_id)
values ('$mem_name','$mem_surname','$mem_email','$mem_user','$mem_password','$pos_id')";
//--- น่าจะผิดแค่นี้แหละ
|
|
|
|
|
Date :
2010-02-02 11:10:29 |
By :
saylom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากนะครับ
|
|
|
|
|
Date :
2010-02-02 14:06:13 |
By :
chonsenger |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|