doufang1954 2015-09-05 15:38
浏览 75
已采纳

用HTML / PHP执行的shell脚本

I have some basic knowledge of HTML/PHP. The situation I am facing is frustrating. What I want to accomplish is to create a simple search box on a web page, when the user puts in input and clicks submit then my shell script is executed and then presented on a php page. I have been successful in getting other commands to run when I click submit to make sure the PHP exec shell command is working. I will see the output on the web page. Just not my script. My script uses an argument to pass and works thru command line. Below is the details of my script, HTML, and PHP page. Also, I'm using a FreeBSD 10 box.

My Script

Command Line - $ csearch "argument"

#!/bin/sh
grep -ir -B 1 -A 4 "$*" /usr/local/var/rancid/CiscoDevices/configs

My HTML page

<html>
<body>
<form method="POST" action="csearch.php">
    <input type="text" name="searchText">
    <input type="submit" value="Search">
</form>
</body>
</html>

My PHP page

<?php
$searchText=$_POST['$searchText'];
?>

<html>
<?php

$output = shell_exec('/usr/local/bin/csearch $searchText');
echo "<pre>$output</pre>";

?>
</html>

Any help is greatly appreciated.

  • 写回答

1条回答 默认 最新

  • dqm83011 2015-09-05 15:51
    关注

    shell_exec('/usr/local/bin/csearch $searchText'); This isn't what you expect it to be:

    <?php
    
    $searchText = 'foobar';
    $cmd = '/usr/local/bin/csearch $searchText';
    echo $cmd;
    
    ?>
    

    outputs:

    /usr/local/bin/csearch $searchText

    Change the string to use double quotes and $searchText will actually be what you want to it be:

    $output = shell_exec("/usr/local/bin/csearch $searchText");
    

    More info on the use of quotes in PHP.

    As @uri2x hints in a comment:

    $searchText=$_POST['$searchText']; should be changed to $searchText=$_POST['searchText']; for a similar reason.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式