|
|
|
สอบถามเกี่ยวกับฟอร์มสมัครสมาชิก regis.php ปัญหาคือ มันแทรกข้อมูลลงฐานข้อมูลได้เรื่อยๆเลยครับ รีเฟสหน้า regis_save.php ทีไรลงฐานข้อมูลทันทีครับ |
|
|
|
|
|
|
|
regis.php
<form name="form1" method="post" action="regis_save.php">
<table align="center">
<tr>
<td width="113" ><div align="left" class="style15">Username:</div></td>
<td width="637"><input name='Username' type='text' size='30' value=''/>
* </td>
</tr>
<tr>
<td><div align="left" class="style15" >Password:</div></td>
<td><input name='Password' type='password' size='30' value='' />
* </td>
</tr>
<tr>
<td><div align="left" class="style15" >Re - Password:</div></td>
<td><input name='RePassword' type='password' size='30' value='' />
* </td>
</tr>
<tr>
<td><div align="left" class="style15" >Email:</div></td>
<td><input name='email' type='text' size='30' value='' />
* </tr>
<tr>
<td><span class="style15">ประเภทสมาชิก:</span></td>
<td><select name="memType" id="memType">
<option value="">เลือกประเภทสมาชิก</option>
<option value="teacher">teacher</option>
<option value="student">student</option>
</select>
*</td>
</tr>
<tr>
<td><div align="left" class="style15" >คำนำหน้าชื่อ:</div></td>
<td><select name="title">
<option value="">เลือกคำนำหน้าชื่อ</option>
<option value="เด็กหญิง">เด็กหญิง</option>
<option value="เด็กชาย">เด็กชาย</option>
<option value="นาย">นาย</option>
<option value="นาง">นาง</option>
<option value="นางสาว">นางสาว</option>
</select>
* </td>
</tr>
<tr>
<td><div align="left" class="style15" >ชื่อ:</div></td>
<td><input name='name' type='text' size='30' value='' />
* </td>
</tr>
<tr>
<td><span class="style15">นามสกุล:</span></td>
<td><input name='surname' type='text' size='30' value='' />
* </td>
</tr>
<tr>
<td><span class="style15">ระดับการศึกษา:</span></td>
<td><select name="education">
<option value="">เลือกระดับการศึกษา</option>
<option value="ประถมศึกษา">ประถมศึกษา</option>
<option value="มัธยมศึกษา">มัธยมศึกษา</option>
<option value="ปริญญาตรี">ปริญญาตรี</option>
<option value="ปริญญาโท">ปริญญาโท</option>
<option value="ปริญญาเอก">ปริญญาเอก</option>
<option value="บุคคลทั่วไป">บุคคลทั่วไป</option>
</select>
*</td>
</tr>
<tr>
<td><span class="style15">อาชีพ:</span></td>
<td><input name='Occ' type='text' id="Occ" value='' size='30' />
* </tr>
<tr>
<td><span class="style15">ตำแหน่ง:</span></td>
<td><input name='Posit' type='text' id="Posit" value='' size='30' />
* </tr>
<tr>
<td><span class="style15">สถานที่ทำงาน::</span></td>
<td><input name='work' type='text' size='30' value='' />
* </td>
</tr>
<tr>
<td><span class="style15">เบอร์โทรศัพท์:</span></td>
<td><input name='tel' type='text' size='30' value='' />
* </td>
</tr>
<tr>
<td><span class="style15">ที่อยู่:</span></td>
<td><textarea name='address' cols='30' rows='5'></textarea>
* </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td></td>
<td><input name="submit" type="submit" value="ตกลง">
<input name="reset" type="reset" onClick="history.go(-1);" value="ยกเลิก"> </td>
</tr>
</table>
</form>
regis_save.php
<?
$host="localhost";
$user="";
$pass="";
$db="ชื่อฐานข้อมูล";
$tb="ชื่อตาราง";
mysql_connect( $host,$user,$pass) or die ("?????????????????? Mysql ?????? ");
mysql_select_db($db) or die("????????????????????");
mysql_db_query($db,"INSERT INTO $tb (username, password, title, name, surname, address, education,position,occupation,occ_add,email,tel,status)
VALUES
('$Username','$Password','$title','$name','$surname', '$address','$education','$Posit','$Occ', '$work','$email','$tel','$memType')") or die (mysql_error());
echo "<br><br><center>Hello!! $name <br> <br>";
echo "คุณได้เป็นสมาชิกเรียบร้อยแล้ว";
mysql_close();
ปัญหาคือ มันแทรกข้อมูลลงฐานข้อมูลได้เรื่อยๆเลยครับ รีเฟสหน้า regis_save.php ทีไรลงฐานข้อมูลทันทีครับ
แล้วในฐานข้อมูลก็ข้อมูลซ้ำกับยาวเลยครับ เพราะลองรีเฟสหลายรอบ จะมีวิธีไหนเช็คว่าข้อมูลนี้ได้ทำการสมัครไปแล้วและไม่ให้รีเฟสหน้า regis_save.php แล้วข้อมูลไปเพิ่มในฐานข้อมูล
มีท่านใดทราบบ้างคับช่วยผมทีคับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-26 19:07:36 |
By :
twiwit |
View :
1219 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มคำสั่งตรวจสอบเข้าไปครับว่ามีชื่อผู้ใช้นี้ในระบบแล้ว
Code (PHP)
//เพิ่มตรงนี้ก็ได้ครับ
$num=mysql_num_rows(mysql_query("select * from $db where username='$username'"));
if($num>0){
echo"<script>alert('มีชื่อผู้ใช้นี้ในระบบแล้ว');</script>";
exit();
}
mysql_db_query($db,"INSERT INTO $tb (username, password, title, name, surname, address, education,position,occupation,occ_add,email,tel,status)
VALUES
('$Username','$Password','$title','$name','$surname', '$address','$education','$Posit','$Occ',
Go to : PHP MySQL กับ Register Form ทำระบบ สมัครสมาชิกเก็บข้อมูลง่าย ๆ เช่น รหัสสมาชิก (Username) รหัสผ่าน (Password)
|
|
|
|
|
Date :
2010-06-26 19:13:48 |
By :
somparn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าไม่อยากใ้ห้ กดแล้วส่งข้อมูลซ้ำก็ทำ session ก็ได้ครับ
เช็คว่ามันเป็น session ตัวเดิมหรือเปล่าถ้าเป็นตัวเดิมก็ไม่ได้ต้องทำอะไรเลย
|
|
|
|
|
Date :
2010-06-26 20:15:33 |
By :
oxygenyoyo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอถามต่อ นะครับ แล้วกำหนด session กำหนดแบบไหนเหรอครับ แล้วต้องกำหนดตรงไหนถึงจะถูกต้องครับ
พอจะมีโค๊ตไหมครับ นึกภาพไม่ออก
|
|
|
|
|
Date :
2010-06-27 10:31:28 |
By :
twiwit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเติมอีกหนึ่งวิธี คือ
เมื่อเพิ่มข้อมูลลงฐานข้อมูลแล้ว ให้ header ไปหน้าอื่น เลยครับ Code
$res=mysql_db_query($db,"INSERT INTO $tb (username, password, title, name, surname, address, education,position,occupation,occ_add,email,tel,status)
VALUES
('$Username','$Password','$title','$name','$surname', '$address','$education','$Posit','$Occ', '$work','$email','$tel','$memType')") or die (mysql_error());
if($res)
{
echo "คุณได้เป็นสมาชิกเรียบร้อยแล้ว";
echo'<meta http-equiv="refresh" content="1;URL=ไปหน้าอื่น.php" />';
}
else
{
echo"Error!";
}
|
|
|
|
|
Date :
2010-06-27 16:50:42 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-06-27 21:19:47 |
By :
keapkung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณสำหรับความรู้ดีๆที่นำมาฝากกัน
|
|
|
|
|
Date :
2010-06-27 22:55:42 |
By :
smob00472 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$hostname = "";
$user = "";
$password = "";
$dbname = "";
$tblname = "";
mysql_connect($hostname, $user, $password)
mysql_select_db($dbname)
$id = "อะไรก็ว่าไป";
$pass = "อะไรก็ว่าไป";
$result = mysql_query("select * from $tblname where id='$id'")
while($row = mysql_fetch_array($result)) {
$nameuser = $row['id'];
echo "Userนี้มีผู้ใช้แล้วคือคุณ $nameuser";
}else{
$sql="INSERT INTO member(id,pass) VALUES ('$id','$pass');
mysql_query($sql)or die("เกิดข้อผิดพลาดในการสมัครสมาชิก");
?>
|
|
|
|
|
Date :
2010-06-28 00:25:16 |
By :
newaxekub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|