我有一个将源传递给 iframe 的链接:
<a href='new.mp4' target='showVideo'></a>
<iframe src='sample.jpg' name='showVideo' ></iframe>
我想要做的是让链接<a>
指向一个 PHP 文件,并返回一个新的<iframe>
. 这意味着我的 PHP 文件与我所在的位置不同<iframe>
:
我想要完成的样本;
示例.html:
<a href='sample.php''></a>
<iframe src='sample.jpg' name='showVideo' ></iframe>
示例.php:
<?php
//Code that will get a variable in MySQL
echo "<a href='".$somePhpVariable."' target='showVideo'></a>";
?>
这可能吗?