<div class="row">
<div class="input-field col s12">
<input id="p_video" type="url" name="p_video_link" type="url">
<label for="p_video">Post Video</label>
</div>
</div>
是codeigniter的新手...... 我必须将这个url box url转换为嵌入ocde以通过codeigniter存储在数据库中...如何做到这一点...........提前致谢
答案 0 :(得分:0)
只需将youtube网址保存在数据库中,不使用iframe格式,但是当您从数据库中检索网址时,将结果保存在$ youtubeurl var和echo中的html中,您可以执行类似
的操作<?php
echo '<iframe width="560" height="315" src="'.$youtubeurl.'" frameborder="0" allowfullscreen></iframe>';
?>
所以它只是将html与变量'。$ youtubeurl连接起来。'