Viewing file: FrmEdit.php (5.9 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include("../../../include/FunctionDB.php"); include("../../../include/Function.php"); ConnectDB(); $sql ="Select * From student_tb Where Student_id='$Student_id' "; $result = mysql_query($sql) or die("Error".mysql_error()); $rs = mysql_fetch_array($result); $sql1 = "Select * From std_scholarship_tb Where code='$code'"; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $row = mysql_fetch_array($result1); ?> <html> <head> <title>Edit</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-874"> <link href="../../../css/style1.css" rel="stylesheet" type="text/css"> </head>
<body bgcolor="#FFFFFF"> <font face="Tahoma, MS Sans Serif"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="349" colspan="2"> <form name="form1" method="post" action="Edit.php"> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#E4E4E4" style="border:1px solid gray"> <tr bgcolor="#DDF3DC"> <td height="25" colspan="3"> <div align="center"><strong><font color="#FF0000" size="4" face="Tahoma">á¡éä¢</font><font size="4" face="Tahoma"><strong><font color="#FF0000"> </font><font color="#000000" size="4" face="Tahoma">¢éÍÁÙŷع¡ÒÃÈÖ¡ÉÒ</font></strong></font></strong></div></td> </tr> <tr> <td bgcolor="#EEEEEE"><div align="center"><font size="2" face="Tahoma">ÃËÑʹѡÈÖ¡ÉÒ</font></div></td> <td bgcolor="#EEEEEE"> </td> <td bgcolor="#EEEEEE"><strong><font size="2" face="Tahoma"><? echo $rs[Student_id]?></font></strong></td> </tr> <tr> <td width="27%" bgcolor="#EEEEEE"><div align="center"><font size="2" face="Tahoma, MS Sans Serif">ª×èÍ-¹ÒÁÊ¡ØÅ</font></div></td> <td width="3%" bgcolor="#EEEEEE"><div align="center"><font color="#FF0000" size="4" face="Tahoma"></font></div></td> <td width="70%" bgcolor="#EEEEEE"><strong><font size="2" face="Tahoma"><? echo $rs[First_name]?> <? echo $rs[Name]?> <? echo $rs[Lastname]?></font></strong></td> </tr> <tr> <td bgcolor="#EEEEEE"> <div align="center"><font size="2" face="Tahoma, MS Sans Serif">Çѹ·ÕèÃѺ·Ø¹</font></div></td> <td bgcolor="#EEEEEE"><div align="center"><font color="#FF0000" size="4" face="Tahoma"></font></div></td> <td bgcolor="#EEEEEE"><font color="#000000" size="2" face="Tahoma">Çѹ·Õè <select name="mDate" id="select" class="select" > <?php $Date_rec = $row[Date_rec]; $yearthai = explode("-",$Date_rec); $mDate = intval($yearthai[2]); $mMonth = intval($yearthai[1]); $mYear = intval($yearthai[0]); for($i=0;$i<=31;$i++) { if( $i == 0) echo"\n\t<option value=\"$mDate\" selected>$mDate</option>\n "; else echo"\n\t<option value=\"$i\">$i</option>\n "; } // getDay1to31(); ?> </select> à´×͹ <select name="mMonth" id="select" class="select" > <?php $Date_rec = $row[Date_rec]; $yearthai = explode("-",$Date_rec); $mDate= intval($yearthai[2]); $Month = intval($yearthai[1]); $mYear = intval($yearthai[0]); $mMonth = $Month; $CMonth = TxtThaiMonth($Month); for($i=-1;$i<=11;$i++) { $a = $i+1; if( $a == 0) echo"\n\t<option value=\"$mMonth\" selected>$CMonth</option>\n "; else echo"\n\t<option value=\"$a\">$ThaiMonth[$i]</option>\n "; } // getThaiMonth(); ?> </select> »Õ ¾.È. <input name="mYear" type="text" class="input" id="mYear" value="<? echo $mYear ?>" size="10"> </font></td> </tr> <tr> <td bgcolor="#EEEEEE"> <div align="center"><font size="2" face="Tahoma, MS Sans Serif">ª×èͷع</font></div></td> <td bgcolor="#EEEEEE"><div align="center"><font color="#FF0000" size="4" face="Tahoma"></font></div></td> <td bgcolor="#EEEEEE"><font face="Tahoma, MS Sans Serif"> </font><font size="2"> <select name="Scholarship_code" id="Scholarship_code" class="input1" > <?php $Scholarship_code = $row[Scholarship_code]; $strSQL2 = "SELECT * FROM scholarship_tb "; $result2 = mysql_query($strSQL2); $strSQL3 = "SELECT * FROM scholarship_tb Where Scholarship_code='$Scholarship_code' "; $result3 = mysql_query($strSQL3); while( $rss = mysql_fetch_array($result2)) { echo"<option value=\"$rss[Scholarship_code]\" ><b>$rss[Scholarship_name]</b></option>\n"; while($rss3 = mysql_fetch_array($result3)) { echo"<option value=\"$rss3[Scholarship_code]\" ><b>$rss3[Scholarship_name]</b></option>\n"; } } ?> </select> </font><font face="Tahoma, MS Sans Serif"> </font><font size="2" face="Tahoma"> </font> </td> </tr> <tr> <td bgcolor="#EEEEEE"> <div align="center"><font color="#000000" size="2" face="Tahoma">¡ÒþԨÒÃ³Ò </font></div></td> <td bgcolor="#EEEEEE"> </td> <td bgcolor="#EEEEEE"> <textarea name="Consider" cols="60" rows="5" id="Consider"><? echo $row[Consider]?></textarea></td> </tr> <tr bgcolor="#DDF3DC"> <td colspan="3"> <div align="center"> <input type="hidden" name="Student_id" value="<? echo $row[Student_id]?>"> <input type="hidden" name="code" value="<? echo $row[code]?>"> <input type="submit" name="Submit" value=" ºÑ¹·Ö¡ "> </div></td> </tr> </table> </form></td> </tr> </table> </font> </body> </html>
|