操作链接
<a href="index.php?act=showContent&path=<?php echo $path;?>&filename=<?php echo $p;?>里的内容什么意思?
? &各代表什么,act=showContent等等什么意思
操作链接
<a href="index.php?act=showContent&path=<?php echo $path;?>&filename=<?php echo $p;?>里的内容什么意思?
? &各代表什么,act=showContent等等什么意思
你可以在url上附加参数给服务器,参数和参数用&连接,=前面是参数名,后面是值。
至于这些参数是干嘛的,要看你的服务器,当然你也可以根据名字猜测,比如act=showcontent应该是说一个叫做动作的参数,它的值为"显示内容"
filename,文件名,等于你的表达式的p<?...?>
这个是PHP的表达式,用来拼接变量产生这个完整的地址。