1
我有過一個源到一個iframe的鏈接調用的iframe:從另一個窗口
<a href='new.mp4' target='showVideo'></a>
<iframe src='sample.jpg' name='showVideo' ></iframe>
我想要做的是有鏈接<a>
指向一個PHP文件,將返回新源。這意味着我的PHP文件與我的所在的位置不同:
我想要完成的示例;
sample.html:
<a href='sample.php''></a>
<iframe src='sample.jpg' name='showVideo' ></iframe>
sample.php:
<?php
//Code that will get a variable in MySQL
echo "<a href='".$somePhpVariable."' target='showVideo'></a>";
?>
這可能嗎?
將您的'''target'指向框架,並在PHP文件中使用'header(「Location:...」)'將框架重定向到所需的URL。 – Passerby