。需要帮助的人,我创建了一个名为picture.php的php页面。在这个页面中,我从数据库中检索某个图像,我使用以下代码显示检索到的图像:
header("Content-Type: image/jpeg");
imagejpeg($img);
imagedestroy($img);
.next,我想使用此页面作为使用以下代码在iframe中显示的图像的来源:
<a id="various3" href="picture.php" title="<?php echo $info; ?>"><img class="last" src="./images/page11.jpg" /></a>
.various 3是一个jquery类,当我点击标签时,各种3将弹出一个iframe,里面有picture.php。我想要做的是根据picture.php中图像的大小设置Iframe的大小。请帮帮我!
答案 0 :(得分:0)
以下是您从 - &gt;开始的教程Here
您必须将结果值存储在一个数组或两个单独的变量中。
在你的iframe中,这应该有效:
<?php
$valueWidth=500;
$valueHeight=250;
?>
<iframe src="" width="<?= $valueWidth ?>" height="<?= $valueHeight ?>"