|
|
|
สอบถามผู้รู้ ทำไม เพิ่มข้อมูลไม่ได้ค่ะ รบกวนช่วยดูให้หน่วยน่ะค่ะ ขอบคุณมากๆค่ะ |
|
|
|
|
|
|
|
ไฟล์ regis.php
Code (PHP)
<? include "..\chksession.php"; ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>เพิ่มข้อมูลสมาชิก</title>
<style type="text/css">
<!--
.style4 {font-family: "microsoft Sans Serif"}
.style8 {color: #003300}
.style25 {color: #FFFFFF}
.style28 {color: #0000FF; font-size: x-small; font-family: "microsoft Sans Serif"; }
.style29 {color: #0000FF; font-size: x-small; }
.style30 {color: #0000FF}
body {
background-color: #FFFFFF;
}
.style31 {color: #FF0000}
-->
</style>
<? include "../include/connect.php";
?>
<script language="JavaScript">
function check(){
if(document.form1.username1.value.length==0){
alert(" กรุณากรอก username ครับ ");
return false;
}
else if(document.form1.passwd.value.length<=0){
alert(" กรุณากรอก รหัสผ่านครับ ");
return false;
}
else if(document.form1.name1.value.length<=0){
alert(" กรุณากรอก ชื่อผู้ใช้ครับ ");
return false;
}
else if(document.form1.lastname1.value.length<=0){
alert(" กรุณากรอก นามสกุลครับ ");
return false;
}
else if(document.form1.class1.value.length<=0){
alert(" กรุณากรอก ระดับผู้ใช้ครับ ");
return false;
}
else
return true;
}
</script>
</head>
<?
if($Submit){
//else{
if($errror_msg==""){
$sql="INSERT INTO tb_login (username,password,name,lastname,class)
VALUES ('$username1','$passwd', '$name1', '$lastname1', '$class1')";
$result = mysql_query($sql);
if($result){
echo "<script language='javascript'>alert('เพิ่มข้อมูลสมาชิกเรียบร้อยแล้ว');</script>";
//echo "<meta http-equiv=\"refresh\" content=\"0;url=showuser_admin.php?username=$u_username\"> ";
echo "<script language='javascript'>window.opener.location.reload();window.close();</script>";
}else{
echo "<script language='javascript'>alert('ไม่สามารถเพิ่มข้อมูลสมาชิกได้');</script>";
}
}
}
?>
<body>
<form name="form1" method="post" action="" onSubmit="return check();">
<table width="320" border="1" align="center" cellpadding="1" cellspacing="1" bordercolor="#A20300">
<tr bordercolor="#A20300" bgcolor="#A20300">
<td colspan="2"><div align="center"><img src="../image/insert_mem.jpg" width="320" height="30"></div></td>
</tr>
<tr>
<td width="132" bordercolor="#A20300" bgcolor="#FFFFFF"><div align="right" class="style29">
<div align="right"><span class="content">Username</span>::</div>
</div></td>
<td width="263" bordercolor="#A20300" bgcolor="#FFFFFF"><span class="style25">
<label>
<input name="username1" type="text" id="username1" style="background:#F0ECEB"=""value="" size="25" maxlength="12" onKeyPress="check_En();">
</label>
<span class="style31">* </span></span></td>
</tr>
<tr>
<td bordercolor="#A20300" bgcolor="#FFFFFF"><div align="right" class="style29">
<div align="right"><span class="content">Password</span>::</div>
</div></td>
<td bordercolor="#A20300" bgcolor="#FFFFFF"><span class="style25">
<label>
<input name="passwd" type="password" id="passwd" value="<? echo $passwd;?>" size="25" maxlength="12">
</label>
<span class="style31">* </span></span></td>
</tr>
<tr>
<td bordercolor="#A20300" bgcolor="#FFFFFF" class="style4"><div align="right" class="style28">
<div align="right" class="content">ชื่อ::</div>
</div></td>
<td bordercolor="#A20300" bgcolor="#FFFFFF"><div align="left" class="style25">
<label></label>
<label>
<input name="name1" type="text" id="name1" value="" size="25">
</label>
<span class="style31">* </span></div></td>
</tr>
<tr>
<td bordercolor="#A20300" bgcolor="#FFFFFF" class="style4"><div align="right" class="style28">
<div align="right" class="content">นามสกุล::</div>
</div></td>
<td bordercolor="#A20300" bgcolor="#FFFFFF"><div align="left" class="style25">
<label></label>
<label>
<input name="lastname1" type="text" id="lastname1" value="" size="25">
</label>
<span class="style31">* </span></div></td>
</tr>
<tr>
<td bordercolor="#A20300" bgcolor="#FFFFFF" class="style4"><div align="right" class="style28">
<div align="right" class="content">ระดับผู้ใช้::</div>
</div></td>
<td bordercolor="#A20300" bgcolor="#FFFFFF"><div align="left" class="style25">
<label></label>
<label>
<select name="class1" id="class1">
<option>----โปรดเลือก----</option>
<option value="<? echo "admin"; ?>">ผู้ดูแลระบบ</option>
<option value="<? echo "staff"; ?>">เจ้าหน้าที่พัสดุ</option>
<option value="<? echo "ceo"; ?>">ประธานโปรแกรม</option>
<option value="<? echo "user"; ?>">อาจารย์หรือเจ้าหน้าที่โปรแกรม</option>
<option value="-">-</option>
</select>
<span class="style31">* </span> </label>
</div></td>
</tr>
<tr>
<td colspan="2" bordercolor="#A20300" bgcolor="#FFFFFF"><div align="right" class="style28">
<div align="center"><span class="style8">
<input name="Submit" type="submit" id="Submit" value="ตกลง" username="Submit" />
<input type="reset" name="Submit3" value="ยกเลิก" onClick="window.close();" />
</span></div>*กรุณากรอกข้อมูลให้ครบถ้วน
</div> <span class="style30"></span>
<label> </label>
<div align="left"></div></td>
</tr>
</table>
</form>
</body>
</html>
ไฟล์ chksession.php
Code (PHP)
<?php
session_start();
$sess_userid=$_SESSION[sess_userid];
if ($sess_userid<>session_id() ) {
header("Location: index.php");
exit();
}
?>
ไฟล์ connect.php
Code (PHP)
$host="localhost";
$user="root";
$pass="";
$db="db_ims";
$con=mysql_connect($host,$user,$pass);
mysql_db_query($db,$con);
mysql_query("SET NAMES utf8");
session_start();
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-02-12 18:06:16 |
By :
nungna11 |
View :
663 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error คือ??
|
|
|
|
|
Date :
2014-02-12 19:08:49 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ขึ้น Error อะไรเลยค่ะ
|
|
|
|
|
Date :
2014-02-12 19:47:46 |
By :
nungna11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($Submit) <<<<< ไำม่มีนะครับการประกาศแบบนี้ จงศึกษาการส่งค่าด้วย $_POST โดยด่วน
|
|
|
|
|
Date :
2014-02-12 19:49:22 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณผู้รู้ที่ช่วยตอบค่ะ ทำได้แล้วค่ะ
|
|
|
|
|
Date :
2014-02-21 23:01:28 |
By :
nungna11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|