码迷,mamicode.com
首页 > Web开发 > 详细

php页面传参给shell脚本

时间:2016-01-10 17:14:11      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:php   shell   传参   

代码如下:

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>MAC search</title>

</head>

<body align="middle" bgcolor="gray">

<h1><font size="20" face="Verdana" color="blue">MAC search</font></h1>

<form action="" method="post">

MAC:

<input type="text" name="mac" size="20"/>

<input type="submit" value="submit"/>

</form>

<?php

if(isset($_POST[‘mac‘])&&$_POST[‘mac‘]!=‘‘){

        $mac=$_POST[‘mac‘];

$output = shell_exec("macsearch $mac");

echo "$output";

}

?>

</body>

</html>

分析如下:

    1.通过表单传入一个参数“mac”        

        <form action="" method="post">

        MAC:

        <input type="text" name="mac" size="20"/>

        <input type="submit" value="submit"/>

        </form>

    2.通过php传入参数并且运行shell脚本     

        <?php

        if(isset($_POST[‘mac‘])&&$_POST[‘mac‘]!=‘‘){

                $mac=$_POST[‘mac‘];

        $output = shell_exec("macsearch $mac");

        echo "$output";

        }

        ?>


php页面传参给shell脚本

标签:php   shell   传参   

原文地址:http://easyyx.blog.51cto.com/8603153/1733474

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!