使用php字符串代码设置文本页面

时间:2014-11-30 19:42:25

标签: php

它将放置在返回动态频道的模板中

Php linking thats dynamic > http://domain.com/text.php?content=yourtext

doing so returns the text. "yourtext"

我的意思是“yourtext”将被添加到嵌入代码中,因此是动态的。

我基本上正在重建流媒体网站布局。

实施例

<iframe src="http://domain.tv/embed/video/<?php echo $yourtext ?>" frameborder="0" framespacing="0" width="100%" height="100%" /></iframe>
抱歉我的英语不好,如果不符合你的英语,我会调整它。

1 个答案:

答案 0 :(得分:0)

如果您尝试从http://domain.com/text.php?content=yourtext

获取yourtext
<iframe src="http://domain.tv/embed/video/<?= htmlspecialchars($_GET['content']) ?>" frameborder="0" framespacing="0" width="100%" height="100%" /></iframe>