<?php
$a = $_GET['a']//这里获取一个get值,改成你的获取session
echo $a
if($a >0){ //判断有session
?>
<div id="a">a大于0</div> <!--有session输出这段-->
<?php
}
else{ //判断无session
?>
<div id="aa">a小于0</div> <!--无session输出这段-->
<?php
}
?>
1。利用apache server的配置文件httpd.conf,添加一行:AddType application/x-httpd-php-source .phps
然后,把php源文件存储为.phps结尾的文件名即可,这样在浏览器中点击*.phps文件,显示的即为php彩色源代码。
2。利用php的函数(php4版本以上)
----函数一:show_source(filename)
返回的就是文件filename的php源代码,如:
<?php
show_source("test.php")
?>
----函数二:highlight_string(string)
返回的就是把字串string中的php代码彩色显示,如:
<?php
highlight_string("<?php echo \\\\"hello!\\\\" ?>")
?>
<?php if($act_type!=1){ ?><tr>
<td height="30" align="right" bgcolor="#FFFFFF">公里数:</td>
<td bgcolor="#FFFFFF"><input name="subject1" type="text" class="inputuser" id="subject3" style="width:100%" disabled="disabled" value=.<?=@$row[book_connect]?>.></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF">车架号:</td>
<td bgcolor="#FFFFFF"><input name="subject1" type="text" class="inputuser" id="subject3" style="width:100%" disabled="disabled" value='."<?=@$row[book_restore]?>".'></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF">预约时间:</td>
<td bgcolor="#FFFFFF"><input name="subject1" type="text" class="inputuser" id="subject3" style="width:100%" disabled="disabled" value='."<?=@$row[car_time]?>".'></td>
</tr>
<?php }else{echo ""}?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)