在线求助,一句php的if~~~急~~~~~~~~~~~~
if ($_GET['lx'] == "1"):
$file_name = $r['titlepic'];
else
$file_name = $r['picurl'];
end if
这句正确得如何写??
------解决方案--------------------
你这种语法在php是通不过的,在php代码中是
if(expression){
//todo
}else{
//todo
}
或在模板文件中
<?if(expression):?>
<!--这是true时的html代码 -->
<?php else:?>
<!--这是flase时的html代码 -->
<?php endif;?>
------解决方案--------------------if ($_GET['lx'] == "1"){
$file_name = $r['titlepic'];
}else{
$file_name = $r['picurl'];
}