|
|
|
คือต้องการเปลี่ยนจากที่ให้เปิดเพจธรรมดาเป็น เปิด window บานเล็กแล้วส่งค่าไปตาม code นะค่ะต้องทำยังไงช่วยชี้แนะด้วยค่ะ อันนี้ใช้ link แบบรูปภาพนะค่ะ |
|
|
|
|
|
|
|
myWindow.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function openWindow(id, name)
{
mywindow = window.open (
"newWindow.php?id=" + id + "&name=" + name,
"mywindow","location=0,status=0,scrollbars=1,width=1000,height=600"
);
}
</script>
</head>
<body>
<a href="javascript:openWindow('1', 'narong')">open window</a>
</body>
</html>
newWindow.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
echo 'id = ', $_GET['id'], '<br />';
echo 'name = ', $_GET['name'], '<br />';
?>
</body>
</html>
|
|
|
|
|
Date :
2010-11-26 20:42:19 |
By :
DS_Ohm |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|