我想从我的“log.php”重定向到“index.php”,这是我的代码:
日志.php -->
<?php
$com=shell_exec("ls -l");
if ($com==NULL) {
echo "Can't execue the command :(";
}else{
rawurlencode($com);
header("Location: index.php?comm=$com");
}
?>
索引.php
<p><button><a href="log.php">Files in folder</a></button></p>
<pre><?php
$command=$_GET['comm'];
echo rawurldecode($command);
?>
</pre>
我也用 'urlencode()' 试过了,但也没有用。