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

用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.

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

报告相同问题?

悬赏问题

  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失
  • ¥15 springboot+vue 集成keycloak sso到阿里云
  • ¥15 win7系统进入桌面过一秒后突然黑屏
  • ¥30 backtrader对于期货交易的现金和资产计算的问题
  • ¥15 求C# .net4.8小报表工具
  • ¥15 安装虚拟机时出现问题