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

使用php代码字符串设置文本页面,php,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 $your

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

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>

如果您试图从


但是你现在的问题是什么?我需要php代码使其“text.php?content=yourtext”有效(yourtext)作为示例
<iframe src="http://domain.tv/embed/video/<?= htmlspecialchars($_GET['content']) ?>" frameborder="0" framespacing="0" width="100%" height="100%" /></iframe>