|
|
|
ทำอย่างไรให้เมื่อเราเปิด popup แล้วหน้าหลักไม่ทำการ refresh page |
|
|
|
|
|
|
|
ปัญหาคือ เมื่อเรียก popup แล้วหน้าหลักมันrefresh ทำหให้ข้อมูลหายหมด ทำอย่างไรเมือเรียก popup แล้วหน้าหลักไม่ refresh
popup code
Code (PHP)
<?
//ส่วนของการตรวจสอบ Session
ob_start();
session_start();
//session_cache_expire(30);
//$cache_expire = session_cache_expire();
if(empty($_SESSION[sess_user])) // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:login.php');
exit();
}
?>
<html>
<head>
<title>transcosmos</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<script language="JavaScript">
function sendtomainform()
{
opener.document.all.textfield_id.value=document.all.dew.value;
opener.document.all.textfield_name.value=document.all.staff_name.value;
opener.document.all.textfield_lastname.value=document.all.staff_lastname.value;
opener.document.all.textfield_contact.value=document.all.contact_no.value;
opener.document.all.textfield_email.value=document.all.staff_email.value;
opener.document.all.select_dep1.value=document.all.select_dep1.value;
window.close();
}
</script>
<?php
/*** By Weerachai Nukitram ***/
/*** http://www.ThaiCreate.Com ***/
$strSearch = $_GET['textfield'];
$strPage = $_POST["myPage"];
include("inc/DB_Conf.php");
//$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
//$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM staff_name WHERE 1 AND (staff_name_id LIKE '%".$strSearch."%' OR staff_code LIKE '%".$strSearch."%'OR staff_name LIKE '%".$strSearch."%'OR staff_lastname LIKE '%".$strSearch."%'OR staff_email LIKE '%".$strSearch."%'OR contact_no LIKE '%".$strSearch."%'OR phone_no LIKE '%".$strSearch."%')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 10; // Per Page
$Page = $strPage;
if(!$strPage)
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by staff_name_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="683" border="1" STYLE="font-size : 10pt">
<tr>
<th width="77"> <div align="center">Staff_code_ID</div></th>
<th width="105"> <div align="center">Name</div></th>
<th width="148"> <div align="center">Last Name</div></th>
<th width="42"> <div align="center">Contact</div></th>
<th width="169"> <div align="center">Email</div></th>
<th width="40"><div align="center">Dept</div></th>
<th width="56"> <div align="center">Select</div></th>
</tr>
<?
$n=0;
while($objResult = mysql_fetch_array($objQuery))
{
?>
<form action="" name="get_detail" id="get_detail" method="get">
<tr>
<td>
<div align="center"><?=$objResult["staff_code"];?>
<input name="dew" type="hidden" id="dew" value="<? echo $objResult["staff_code"];?>" />
</div> </td>
<td><?=$objResult["staff_name"];?><input name="staff_name[$n]" type="hidden" id="staff_name" value="<? echo $objResult["staff_name"];?>" /></td>
<td><?=$objResult["staff_lastname"];?><input name="staff_lastname[$n]" type="hidden" id="staff_lastname" value="<? echo $objResult["staff_lastname"];?>" /></td>
<td><?=$objResult["contact_no"];?><input name="contact_no[$n]" type="hidden" id="contact_no" value="<? echo $objResult["contact_no"];?>" /></td>
<td><?=$objResult["staff_email"];?><input name="staff_email[$n]" type="hidden" id="staff_email" value="<? echo $objResult["staff_email"];?>" /></td>
<td align="center">
<?
$strSQLedit_dep1 = "SELECT * FROM department where department_id='$objResult[department_id]'";
$objQueryedit_dep1 = mysql_query($strSQLedit_dep1) or die ("Error Query [".$strSQLedit_dep1."]");
$objResultedit_dep1 = mysql_fetch_array($objQueryedit_dep1);
echo $objResultedit_dep1["department_name"];
?><input name="select_dep1" type="hidden" id="select_dep1" value="<? echo $objResult["department_id"];?>" />
</td>
<td><input name="submit_id" id="submit_id" type="submit" value="Submit" onClick="sendtomainform();" /><input name="submit_id2" id="submit_id2" type="submit" value="Submit2" onClick="alert(window.opener.form);" /></td>
</tr>
</form>
<?
$n++;
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href=\"JavaScript:doCallAjax(document.getElementById('txtSearch').value,'$Prev_Page')\"><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href=\"JavaScript:doCallAjax(document.getElementById('txtSearch').value,'$i')\">$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href=\"JavaScript:doCallAjax(document.getElementById('txtSearch').value,'$Next_Page')\">Next >></a> ";
}
?>
</body>
</html>
ส่วนของ main
Code (PHP)
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features).focus();
}
//-->
</script>
<form action="" method="post" onSubmit="MM_openBrWindow('show.php?textfield='+document.getElementById('textfield_popup').value,'','width=700,height=600')">
<table width="100%" border="0" STYLE=" font-family:Tahoma;font-size : 10pt">
<tr>
<td colspan="2"><br>
<strong>Requester</strong></td>
</tr>
<tr>
<td><label>
<input type="text" name="textfield_popup" id="textfield_popup" />
</label></td>
<td><input type="submit" name="button2" id="button2" value="search" /></td>
</tr>
</table>
</form>
Tag : PHP
|
|
|
|
|
|
Date :
2010-11-26 15:07:12 |
By :
ziix |
View :
1378 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้วิธีใส่สคริปเหมือนพี่วินนั่นแหละครับแต่ผมใส่ในแท็ก body ของ popup สั่งให้ทำงานตอน onload นั่นหมายความว่าเวลา popup เปิดขึ้นมาปับสั่งให้ ไฟล์แม่ที่มันเปิดมานั้น reload/refresh ทันทีครับลองดูครับ
ที่ไฟล์ popup นะครับ
<html>
<head>
<script language="javascript">
<!--
function closepopup_reloadparent(){
opener.location.reload(true);
self.close();
}
-->
</script>
</head>
<body onload="closepopup_reloadparent();">
some thing to show!
</body>
</html>
|
|
|
|
|
Date :
2010-11-27 17:25:49 |
By :
wad |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|