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,038

HOME > PHP > PHP Forum > ถามเซียน...เกี่ยวกับการส่งค่าข้อมูล หน้า test เป็นหน้าเกี่ยวกับการจัดการข้อมูลอาจารย์



 

ถามเซียน...เกี่ยวกับการส่งค่าข้อมูล หน้า test เป็นหน้าเกี่ยวกับการจัดการข้อมูลอาจารย์

 



Topic : 036099



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



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




หน้า test เป็นหน้าเกี่ยวกับการจัดการข้อมูลอาจารย์ โดยจะแสดงตามกลุ่มสาระการเรียนรู้

Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
	
			include"connect.php";

	?>

<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
<style type="text/css">
<!--
.style20 {font-family: AngsanaUPC; font-size: 24px; color: #000000; }
.style38 {font-family: AngsanaUPC; font-size: 36px; color: #000000; }
-->
</style>
</head>
<body>
<form action="" method="post" name="form1">
  <table width="597" border="1">
    <tr>
      <th colspan="2" scope="col"><span class="style38">จัดการข้อมูลอาจารย์</span></th>
    </tr>
    <tr>
      <th height="37" colspan="2" scope="col"><span class="style20">แสดงอาจารย์ตามกลุ่มสาระการเรียนรู้</span></th>
    </tr>
    <tr>
      <th rowspan="2" scope="col">&nbsp;</th>
      <th width="105" scope="col">เพิ่ม</th>
    </tr>
    <tr>
      <th scope="col"><span class="style20">การจัดการข้อมูล</span></th>
    </tr>
    <tr>
      <??>
      <th scope="col"><span class="style20">กลุ่มสาระการเรียนรู้</span></th>
      <th scope="col"><img src="image/chang.jpg" alt="แก้ไข" width="40" height="40"></th>
    </tr>
    <tr>
      <?php 
			$sqlsel="SELECT * FROM gro";
			$result=mysql_query($sqlsel)or die(mysql_error());
		while($data=mysql_fetch_array($result)){
		
		?>
      <td scope="col"><?=$data[gro_name]?></td>
      <th scope="col"><a href="test1.php?gro_id=<?=$data[id_gro]?>">แก้ไข</a></th>
    </tr>
    <?php }?>
  </table>
</form>
</body>
</html>




หน้า test1 เป็นหน้าที่พอคลิกแก้ไขในกลุ่มสาระการเรียนรู้ก็จะแสดงรายชื่ออาจาย์ขึ้นมาตามกล่มสาระที่เลือก


Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
	
			include"connect.php";

	?>

<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
<style type="text/css">
<!--
.style20 {font-family: AngsanaUPC; font-size: 24px; color: #000000; }
.style38 {font-family: AngsanaUPC; font-size: 36px; color: #000000; }
-->
</style>
</head>
<body>
<form action="" method="post" name="form1">
  <table width="597" border="1">
    <tr>
      <th colspan="3" scope="col"><span class="style38">แก้ไขข้อมูลอาจารย์</span></th>
    </tr>
    <tr>
      <th height="37" colspan="3" scope="col"><span class="style20">แสดงรายชื่ออาจารย์ตามกลุ่มสาระการเรียนรู้</span></th>
    </tr>
    <tr>
      <th scope="col"><span class="style20">กลุ่มสาระการเรียนรู้</span></th>
      <th scope="col">&nbsp;</th>
      <th scope="col">การจัดการข้อมูล</th>
    </tr>
    <tr>
      <th width="148" scope="col">ลำดับ</th>
      <th scope="col">ชื่อ-สกุล</th>
      <th width="142" scope="col">แก้ไข</th>
    </tr>
    <tr>
      <?php
		echo $sqlsel="SELECT * FROM teacher ";
			$result=mysql_query($sqlsel)or die(mysql_error());
			$i=0;
		while($data=mysql_fetch_array($result)){
			$i++;
		?>
      <th scope="col"><? echo $i;?></th>
      <th scope="col"><?=$data[teac_name]?></th>
      <th scope="col">&nbsp;</th>
    </tr>
    <?php }?>
  </table>
</form>
</body>
</html>






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

ช่วยแนะนำหน่อยนะคะ

จะขอบคุณอย่างสูง





Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-12-22 16:30:35 By : muay028 View : 934 Reply : 1
 

 

No. 1



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



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

ของดูตาราง teacher ได้มั้ยครับว่ามีฟิลด์อะไรบ้าง

ไม่งั้นก็ลองเปลี่ยน sql เป็นแบบนี้ครับ
จาก
Code (PHP)
$sqlsel = "SELECT * FROM teacher";

เป็น
Code (PHP)
$sqlsel = "SELECT * FROM teacher id_gro=".$_GET['id_gro'];







Date : 2009-12-22 17:43:47 By : kenessar
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ถามเซียน...เกี่ยวกับการส่งค่าข้อมูล หน้า test เป็นหน้าเกี่ยวกับการจัดการข้อมูลอาจารย์
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่