将id传递给iframe

时间:2013-06-10 07:56:35

标签: php mysql

从数据库中检索时,我给出了一个名为(myifp.php)的iframe页面.ie

while($row=mysql_query($sql)) {
    echo $row['id'];

    <iframe width="523" height="234" scrolling="No"width="500" height="145" src=myifp.php?<?php echo $row['id'];?>" frameborder="0" name="myframe"  ></iframe>
}

但问题我得到的是当从数据库中检索到多行时,我只能检索iframe页面中所有行的最后一个id(myifp.php)。

例如:当从db中检索到5行时,当我单击第一行值时,id仍为5本身

..可能是什么问题......请帮助我

1 个答案:

答案 0 :(得分:0)

试试这个:

$res=mysql_query($sql)

while($row = mysql_fetch_assoc($res)) {
    // you got windth and height 2 times here, 1 time is enough
    echo '<iframe width="523" height="234" scrolling="No" width="500" height="145" src="myifp.php?id='.$row['id'].'" frameborder="0" name="myframe"></iframe>';
}