<?php $levelid=$user['levelid']; $sql="select * from levels where levelid = ' $levelid' "; $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { if($strDefault == $row["levelid"]) { $sel = "selected"; } else { $sel = ""; } ?> <option value="<?php echo $row['levelid'];?>" <?=$sel;?> ><?php echo $row['level']."ปีที่".$row['levelyear']."/".$row['class'];?></option> <?php } ?> </select>
<?php $levelid=$user['levelid']; $sql="select * from levels where levelid = ' $levelid' "; $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { ?> <option <?php if($strDefault == $row["levelid"]){ echo "selected"} ?> ></option> <?php } ?> </select>
<nav> <ul class='top-nav'> <? $sql_main=mysql_query("select * from cfb_menu"); $NRow_Menu=mysql_num_rows($sql_main); if($NRow_Menu>0){ while($row_main=mysql_fetch_array($sql_main)){ echo"<li><a href=''><span>$row_main[nav_name]<span></a>"; //วนลูป sub $sql_sub=mysql_query("select * from cfb_menu_sub where nav_id=$row_main[nav_id]"); $NRow_sub=mysql_num_rows($sql_sub); if($NRow_sub>0){ echo "<ul class='subnav'>"; while($row_sub=mysql_fetch_array($sql_sub)){ echo"<li><a href=''><span>$row_sub[sub_name]</span></a></li>"; } echo "</ul>"; } echo "</li>"; } }else{echo "<li>ไม่มีเมนู</li>";} ?> </ul> </nav>
<select name="level"> <?php $sql="select * from levels where levelid "; $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { if($user['levelid'] == $row['levelid']){ $Sel="selected"; }else{ $Sel=""; } ?> <option value="<?php echo $row['levelid'];?><?=$user['levelid'];?>"<?=$Sel;?>><?php echo $row['level']."ปีที่".$row['levelyear']."/".$row['class'];?></option> <?php } ?> </select>
<select name="level"> <?php $sql="select * from levels where levelid ";//ตรงนี้ผิดป่าว where อะไร $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { if($user['levelid'] == $row['levelid']){ $Sel="selected"; }else{ $Sel=""; } ?> <option value="<?php echo $row['levelid'];?><?=$user['levelid'];?>"<?=$Sel;?>><?php echo $row['level']."ปีที่".$row['levelyear']."/".$row['class'];?></option> <?php } ?> </select>
[color=green]นี้คือส่วนแสดงข้อมูลทั้งหน้า <?php $userID = $_GET['UserID']; $sql= "SELECT * FROM students LEFT JOIN user ON students.UserID = user.UserID WHERE students.UserID = '$userID' "; $rs=mysql_query($sql)or die(mysql_error()); $user=mysql_fetch_array($rs); ?> [color=green]นี้คือส่วนแสดงชั้นปีโดยอ้างจาก levelid select name="level"> <?php $sql="select * from levels "; $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { if($user['levelid'] == $row['levelid']){ $Sel="selected"; }else{ $Sel=""; } ?> <option value="<?php echo $row['levelid'];?><?=$user['levelid'];?>"<?=$Sel;?>><?php echo $row['level']."ปีที่".$row['levelyear']."/".$row['class'];?></option> <?php } ?> </select>
<?php $userID = $_GET['UserID']; $sql= "SELECT * FROM students LEFT JOIN user ON students.UserID = user.UserID WHERE students.UserID = '$userID' "; $rs=mysql_query($sql)or die(mysql_error()); $user=mysql_fetch_array($rs); ?> <table class="table table-bordered" align="center" style="width:700px;"> <tr> <td style="width:150px;" > รหัสนักเรียน</font></td> <td style="width:500px;">: <input type="text" name="stcode" value="<?=$user['stcode'];?>" /></td> </tr> <tr> <td> ชื่อนักเรียน</td> <td>: <select name="stini"> <option value="ด.ช" <?php if($user['stini'] == 'ด.ช') echo "selected"; ?>>ด.ช</option> <option value="ด.ช" <?php if($user['stini'] == 'ด.ญ') echo "selected"; ?>>ด.ญ</option> </select> <input type="text" name="stname" value="<?=$user['stname'];?>" /></td> </tr> <tr> <td> นามสกุล</td> <td>: <input type="text" name="stsur" value="<?=$user['stsur'];?>" /></td> </tr> <tr> <td> รหัสประชาชน</td> <td>: <input type="text" name="stidnumber" value="<?=$user['stidnumber'];?>" /></td> </tr> <tr> <td> ที่อยู่่</td> <td>: <input type="text" name="staddress" value="<?=$user['staddress'];?>" /></td> </tr> <tr> <td> วันเดือนปีเกิด</td> <td>: <input type="text" name="stdateofbirth" value="<?=$user['stdateofbirth'];?>" /></td> </tr> <tr> <td> เพศ</td> <td>: <select name="stsex"> <? $sex1 = "M"; $sex2 = "G"; if($user['stsex'] =='M'){ $sex1 = "selected"; }else if($user['stsex'] == "G"){ $sex2 = "selected"; } ?> <option value="M" <?if($user['stsex'] == M) echo "selected"; ?>>ชาย</option> <option value="G" <?if($user['stsex'] == G) echo "selected"; ?>>หญิง</option> </select> </td> </tr> <tr> <td> หมู่เลือด</td> <td>: <select name="stbloodtype"> <? $stbloodtype1 = "A"; $stbloodtype2 = "AB"; $stbloodtype3 = "O"; if($user['stbloodtype'] =='A'){ $stbloodtype1 = "selected"; }else if($user['stbloodtype'] == "AB"){ $stbloodtype2 = "selected"; } else if($user['stbloodtype'] == "O"){ $stbloodtype3 = "selected"; } ?> <option value="A" <?php if($user['stbloodtype'] == O) echo "selected"; ?>>A</option> <option value="AB" <?php if($user['stbloodtype'] == AB) echo "selected"; ?>>AB</option> <option value="O" <?php if($user['stbloodtype'] == O) echo "selected"; ?>>O</option> </select> </td> </tr> <tr> <td> เบอร์โทร</td> <td>: <input type="text" name="sttel" value="<?=$user['sttel'];?>" /></td> </tr> <tr> <td> E-mail</td> <td>: <input type="text" name="sttel" value="<?=$user['stemail'];?> " /></td> </tr> <tr> <td> รหัสเข้าระบบ</td> <td>: <input type="text" name="sttel" value="<?=$user['password'];?>" /></td> </tr> <tr> <td> ชั้นปี</td> <td>: <select name="level"> <?php $sql="select * from levels "; $rs=mysql_query($sql)or die(mysql_error()); while($row=mysql_fetch_array($rs)) { if( $row['levelid']== $user['levelid']){ $Sel="selected"; }else{ $Sel=""; } ?> <option value="<?php echo $row['levelid'];?>"<?=$Sel;?>><?php echo $row['level']."ปีที่".$row['levelyear']."/".$row['class'];?></option> <?php } ?> </select> </td> </tr> <tr> <td> สถานะการใช้ระบบ</td> <td>: <?php if($user['status_user'] == '1') { echo "ใช้ระบบ"; } elseif($user['status_user'] == '2') { echo "ยกเลิกการใช้ระบบ"; } else { } ?> </td> </tr> <tr> <td height="45"> </td> <td> <button type="submit" class="btn btn-large btn-primary" style="text-align:center;">ส่งข้อมูล</button></td> </tr> </table>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง