|
|
|
ใช้ jquery ทำหน้าแก้ไขข้อมูลแบบ popup แต่ข้อมูลเดิมไม่โชว์ ต้องแก้ตรงไหน ค่ะ |
|
|
|
|
|
|
|
ใช้ php popup หรือ Plugin popup
|
|
|
|
|
Date :
2013-08-03 04:46:11 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Popup Fancybox jQuery and PHP Mysql สร้างกล่อง Fancybox ทำงานร่วมกับ PHP และ MySQL
|
|
|
|
|
Date :
2013-08-03 07:37:04 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script type="text/jscript">
$(document).ready(function() {
$('a.button1').click(function() {
//Getting the variable's value from a link
var loginBox = $(this).attr('href');
//Fade in the Popup
$(loginBox).fadeIn(300);
//Set the center alignment padding + border see css style
var popMargTop = ($(loginBox).height() + 24) / 2;
var popMargLeft = ($(loginBox).width() + 24) / 2;
$(loginBox).css({
'margin-top' : -popMargTop,
'margin-left' : -popMargLeft
});
// Add the mask to body
$('body').append('<div id="mask"></div>');
$('#mask').fadeIn(300);
return false;
});
<p>
<? $objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("db_intern");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM teacher, user_login where teacher.id=user_login.id";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
</p>
</p>
</p>
<table width="807" height="41" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="42" align="left"><img src="images/print.jpg" width="33" height="34" /></td>
<td width="765"><strong>แสดงรายงานรายชื่ออาจารย์ที่ปรึกษา</strong></td>
</tr>
</table>
<table width="500" class="data1">
<tr class="data1">
<th class="data1" width="8%">ลำดับ</th>
<th class="data1" width="26%">ชื่อ-สกุล</th>
<th class="data1" width="16%">username</th>
<th class="data1" width="18%">password</th>
<th class="data1" width="11%">ดูข้อมูล</th>
<th class="data1" width="10%">แก้ไขข้อมูล</th>
<th class="data1" width="11%">ลบข้อมูล</th>
</tr>
<? $i=1;
$color = array("#EEEEEE","#F5F5F5");
while($objResult = mysql_fetch_array($objQuery)){
?>
<tr bordercolor="#EBEBEB" bgcolor="<?=$color[($i%2)]?>">
<td align="center"><?=$i++?></td>
<td align="left"><?=$objResult["tea_title"];?>
<?=$objResult["tea_name"];?>
<?=$objResult["tea_sname"];?></td>
<td align="center"><?=$objResult["user_log"];?></td>
<td align="center"><?=$objResult["pass_log"];?></td>
<td align="center"><a href="#input-box1" class="button2" onclick=""><img src="images/Search.png" width="32" height="32" border="0" /></a></td>
<td align="center"><a href="#input-box2" class="button2"><img src="images/file_edit.png" width="32" height="32" /></a></td>
<td align="center"><a href="admin_del_teacher.php?tea_id=<?=$objResult["tea_id"];?>" onClick="return confirm('คุณต้องการลบ คุณ<?=$objResult["tea_name"];?> <?=$objResult["tea_sname"];?> ออกจากระบบหรือไม่ ? ')"><img src="images/Delete.png" width="32" height="32" /></a></td>
</tr>
<?
}
?>
</table>
<div id="input-box1" class="login-popup"> <a href="#" class="close"><img src="img/icon/delete.png" class="btn_close" title="ปิดหน้าต่างนี้" alt="Close" /></a>
<?
$strSQL = "SELECT * FROM teacher, program, status WHERE teacher.pro_id=program.pro_id and teacher.sta_id=status.sta_id and tea_id = '".$_GET["tea_id"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult){
echo "ไม่พบข้อมูล";
}
else{
?>
<table width="400" height="427" align="center" cellpadding="1" cellspacing="1" bordercolor="#FFFFFF" bgcolor="#000000">
<tr>
<th width="467" height="423" bgcolor="#FFFFFF" scope="col"><table width="377" height="380" border="0" align="center" cellpadding="3" cellspacing="5" bordercolor="#FFFFFF">
<tr>
<td height="23" colspan="2" align="center"><div style="background-image: url(pic/show.JPG); width: 145px; height: 177px; background-position: 50% 50%; ">
<p><img src="pic/<?=$objResult["tea_pic"];?>" width="145" height="177" border="0" onload="fixPNG(this)" /></p>
</div></td>
</tr>
<tr>
<th width="164" align="left" bgcolor="#FFFFFF" scope="col">ชื่อ-นามสกุล</th>
<td width="186"><div align="left">:
<?=$objResult["tea_title"];?>
<?=$objResult["tea_name"];?>
<?=$objResult["tea_sname"];?>
</div></td>
</tr>
<tr>
<th align="left" bgcolor="#FFFFFF" scope="col">เบอร์โทรศัพท์</th>
<td><div align="left">:
<?=$objResult["tea_tel"];?>
</div></td>
</tr>
<tr>
<th align="left" bgcolor="#FFFFFF" scope="col">แขนงวิชา/ห้องในที่่ปรึกษา</th>
<td><div align="left">:
<?=$objResult["pro_name"];?>
</div></td>
</tr>
<tr>
<th align="left" bgcolor="#FFFFFF" scope="col">ปีการศึกษาในที่ปรึกษา</th>
<td><div align="left">:
<?=$objResult["tea_year"];?>
</div></td>
</tr>
<br />
</table></th>
</tr>
</table>
<? }mysql_close($objConnect);?>
</div>
ตามรูปค่ะ
|
|
|
|
|
Date :
2013-08-03 16:08:53 |
By :
LaiLA |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template นี้ คุ้นๆ น่ะครับ
|
|
|
|
|
Date :
2013-08-03 17:13:15 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|