我正在努力使我的$content
字符串始终显示以下$content .= ''.$row['content'].'';
,除非我的数据库的video
部分中有视频。
然后我会让它显示
$content .= ''.$row['content'].'<br><br><iframe type="text/html" width="100%" height="390" src="'.$row['video'].'" frameborder="0"/>';
我怎样才能做到这一点?
答案 0 :(得分:0)
如果$ row [&#39; video&#39;]为空,则可以使用此代码,
if($row['video']){ //if its not NULL
$content .= ''.$row['content'].'<br><br><iframe type="text/html" width="100%" height="390" src="'.$row['video'].'" frameborder="0"/>';
}else{
$content .= ''.$row['content'].'';
}
不确定为什么人们喜欢粗鲁,但对你们最好的伙伴们:)
答案 1 :(得分:-1)
setInterval(
function () {
$('.loadHere').unload().load('toload.php').fadeIn('slow');
}, 10500);
$(document).on('click','.testbtn',function(event)
{
event.preventDefault();
var xyz = $('.hiddenelement').val();
alert(xyz);
});