0

我想从我的“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()' 试过了,但也没有用。

4

1 回答 1

4

您正在编码$com变量,但您没有将其保存在任何地方。

试试$com = urlencode($com);吧。

exit;header()重定向后添加。

于 2013-11-13T11:16:00.580 回答