|
|
|
ช่วยดูcodeให้ปมหน่อยครับ อยากส่งค่าที่เรียกมาจากsql ไปให้ functionควนเขียนอย่างไงครับ |
|
|
|
|
|
|
|
อยากดึงข้อมูลจากsql เเล้วส่งไปให้ function OpenPopup(sid) ต้องเขียน code อย่าไงครับ
Code (PHP)
function OpenPopup(sid)
{
window.open('quest_test.php?id=' + sid,'new','fullscreen=yes,toolbar=0, menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');
}
</script>
<?
$b=$_GET['b'];
$g=$_GET['g'];
//echo $b.'<br />';
//echo $g.'<br />';
include('../config.php');
$sql="SELECT * FROM question where group2 = '$g' AND age_range = '$b'";
$query=mysql_query($sql);
$numrows=mysql_num_rows($query);
for($a=1;$a<=$numrows;$a++){
$rs=mysql_fetch_array($query);
?>
<table>
<tr>
<th><?=$a?></th>
<th><?=$rs["group1"]?></th>
<th><?=$rs["group2"]?></th>
<th><?=$rs["age_range"]?></th>
<th><?=$rs["question"]?></th>
//อยากส่งค่า age_range ไปให้ function OpenPopup() ต้องเขียนอย่าไงดีครบ
<th><a onClick="OpenPopup()">ทำแบบทดสอบ</a></th>
</tr>
</table>
<?
}
?>
Tag : PHP, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2012-11-26 13:29:43 |
By :
kissover |
View :
835 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง
Code (PHP)
<a onClick="OpenPopup()">ทำแบบทดสอบ</a>
เป็น
Code (PHP)
<a onClick="OpenPopup('<?=$rs["age_range"]?>')">ทำแบบทดสอบ</a>
|
|
|
|
|
Date :
2012-11-26 13:37:26 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-11-26 13:57:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|