Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ช่วยแนะนำ ที คือระบบลงทะเบียนด้วยตรวจจากฐานข้อมูลก่อน ติดปัญหาเข้ามาดูทีครับ



 

ช่วยแนะนำ ที คือระบบลงทะเบียนด้วยตรวจจากฐานข้อมูลก่อน ติดปัญหาเข้ามาดูทีครับ

 



Topic : 054593



โพสกระทู้ ( 316 )
บทความ ( 0 )



สถานะออฟไลน์




ฐานข้อมูล

student รายละเอียดส่วนตัว
status 0,1, 2 สถานะ ไม่มาลงทะเบียน ว่าง/ไม่ว่าง

ขั้นตอนประมาณนี้นะ

เริ่มกรอก รหัส(มีในฐานข้อมูลละ) ------>ตรวจสอบว่ามีรหัสหรือไม-------->ถ้ามีจะเจอหน้าแสดงข้อมูลตามรหัสที่กรอก แล้วมีform lish เลือกว่าว่าง ไม่ว่าง (ตรงยังสั่งให้อัพเดทไม่ได้)----->อัพเดทเสดก็จบ






ขั้นแรก รับค่าก่อน


Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
</head>
<body>
  	
<form action="Scode.php" method="post" enctype="multipart/form-data" name="form1" id="form1">
  <table width="83%" height="384" border="1" align="center" cellspacing="0" bordercolor="#CCCCCC">
    <tr>
      <td height="27" align="center" bgcolor="#FFFF99"><strong><a href="student_go.php">[รายชื่อนักศึกษาเข้างานเข้าร่วม</a><a href="#">กิจกรรม</a><a href="student_go.php">]</a></strong></td>
      <td align="center" bgcolor="#FFFF99"><strong><a href="status_notgo.php">[รายชื่อนักศึกษาเข้างานไม่เข้าร่วมกิจกรรม]</a></strong></td>
      <td align="center" bgcolor="#FFFF99"><strong><a href="status_no_add.php">[รายชื่อนักศึกษาที่ยังไม่ลงทะเบียน]</a></strong></td>
    </tr>
    <tr>
      <td height="355" colspan="3" align="center" valign="top"><p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp; </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>
          <input name="Scode" type="text" id="Scode" size="30" />
          &nbsp;
          <input type="submit" name="button" id="button" value="ลงทะเบียน" />
      </p></td>
    </tr>
  </table>
</form>
</body>
</html>



2121

ขั้นตอน2 ตรวจสอบ
Code (PHP)
<?
$Scode =$_POST['Scode'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<?
        include"config.in.php";
		$sql="select * from student where Scode='$Scode' AND Status_id=0";
        $query=mysql_query($sql);
		if($query){
		echo "ไม่พบข้อมูล หรือ\nลงทะเบียนไปแล้ว";
		echo "<meta http-equiv='refresh' content='0;url=index.php>"; //refresh แล้วecho แล้วลิ้งไปหน้าตามที่กำหนด
	}else{
		echo "<meta http-equiv='refresh' content='1;url=form_detail.php'?Scode='$Scode'>";
	}
?>
</body>
</html>


ขั้นสาม แสดงเมื่อผ่านเงื่อนไข
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
</head>
<body>
<table width="65%" height="459" border="1" align="center" cellspacing="1" bordercolor="#3399FF">
  <tr>
    <td height="35" bgcolor="#0099FF"></td>
  </tr>
  <tr>
    <td height="297" align="center" valign="top"><form action="edit_status.php" method="post" enctype="multipart/form-data" name="form1" target="_parent" id="form1">
        <p>
          <label></label>
          <?
        include"config.in.php";
		$sql="select * from student where Scode='$Scode' AND Status_id=0";
        $query=mysql_query($sql);
        $numrows=mysql_num_rows($query);
  	    $rs=mysql_fetch_array($query);
		?>
        </p>
        <table width="57%" border="1" align="center" cellspacing="1">
          <tr>
            <td colspan="3" bgcolor="#FFFF99"><div align="center"><strong>รายละเอียดนักศึกษา</strong>
                <?=$rs['ID']?>
              </div></td>
          </tr>
          <tr>
            <td width="24%" align="right" bgcolor="#FFFFCC"><strong>รหัสนักศึกษา</strong></td>
            <td width="2%" bgcolor="#FFFFCC">&nbsp;</td>
            <td width="74%" bgcolor="#FFFFCC"><?=$rs['Scode']?></td>
          </tr>
          <tr>
            <td align="right" bgcolor="#FFFFCC"><strong>ชื่อ</strong></td>
            <td bgcolor="#FFFFCC">&nbsp;</td>
            <td bgcolor="#FFFFCC"><?=$rs['Fname']?>
              &nbsp;&nbsp;
              <?=$rs['Lname']?></td>
          </tr>
          <tr>
            <td align="right" bgcolor="#FFFFCC"><strong>หมู่เรียน</strong> </td>
            <td bgcolor="#FFFFCC">&nbsp;</td>
            <td bgcolor="#FFFFCC"><?=$rs['Year']?></td>
          </tr>
        </table>
        <p>&nbsp;</p>
        <table width="166" height="85" border="0">
          <tr>
            <td><label>
              <?
        $sql="select * from  status where Status_id > 0 ";
		$query=mysql_query($sql); 
		$numrows=mysql_num_rows($query);
		for($a=1;$a<=$numrows;$a++){
		$rs2=mysql_fetch_array($query);
		?>
              <input name="Stutus_id" type="radio" class="style1" id="Teacherid" value==<?=$rs2['Status_id'];?> />
              <span class="style1">
              <?=$rs2['Status'];?>
              </span></label>
              <br />
              <label></label>
         <?
		}			
		?></td>
          </tr>
          <tr>
            <td><input type="submit" name="button" id="button" value="  เลือก   " /></td>
          </tr>
        </table>
        <p>
          <label></label>
          <label></label>
        </p>
        <p>
          <label></label>
          <br />
          <label></label>
          <br />
        </p>
      </form>
      <p>&nbsp;</p>
      <p> </p></td>
  </tr>
</table>
</body>
</html>



2321

ขั้น4 อัพเดท สถานะ (ไม่ผ่านตรงนี้แหละ)
Code (PHP)
<?
$Status_id = $_POST['Status_id'];

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<?
include "config.in.php";

$sql="UPDATE  student SET Status_id='$Status_id'  WHERE  ID ='$ID'";
$query=mysql_query($sql);
	if($query){
	?>
<script>
 		alert("บันทึกข้อมูลเรียบร้อยแล้ว\nขอบคุณที่ให้ความร่วมมือ");
</script>
<?
	echo "<meta http-equiv='refresh'content='0;url=index.php>"; //refresh แล้วecho แล้วลิ้งไปหน้าตามที่กำหนด
	}else{
	?>
<script>
 		alert("ไม่สามารถบันทึกข้อมูลได้");
</script>
<?
	echo "<meta http-equiv='refresh'content='1;url=index.php>";
}
  ?>
</body>
</html>
 



จบ



Tag : PHP, MySQL









ประวัติการแก้ไข
2011-01-17 13:52:16
2011-01-17 17:46:51
2011-01-17 17:56:36
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-01-17 13:40:15 By : ckcr View : 1080 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Go to : code php ระบบลงทะเบียนออนไลด์และตัดเกรด ใครมี code php เกี่ยวกับการลงทะเบียนเรียน






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-04-18 13:05:35 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยแนะนำ ที คือระบบลงทะเบียนด้วยตรวจจากฐานข้อมูลก่อน ติดปัญหาเข้ามาดูทีครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่