$ _POST []无法在php中工作

时间:2012-06-06 06:43:40

标签: php

我开始学习PHP了。管理设置。

我正在使用php版本5.3.13。

我正在尝试将一些信息发布到html表单并在php文件中接收。

出于此目的,我使用$ _Post变量并且php文件的输出为空。

以下是html代码。

<body>
        <form action="report.php" method="POST" >    
            <label for="firstname">First name:</label>
            <input type="text" id="firstname" name="firstname" /><br />
            <input type="submit" value="Report Abduction" name="submit" />
        </form>
</body>

以下是report.php代码

<html>
<head>
<title></title>
</head>
<body>

<?php
     $name = $_POST['firstname'] ; 
         print($name);
?>
</body>
</html>

任何人都可以建议我缺少什么吗?

由于

1 个答案:

答案 0 :(得分:2)

这是一个非常简单的例子,我建议你开始寻找@最喜欢的搜索引擎的示例教程,或者买一本书。

编辑:你是否安装了PHP?你提到inetpub这是一个IIS路径。

<?php 
error_reporting(E_ALL);

if($_SERVER['REQUEST_METHOD']=='POST' && !empty($_POST['firstname'])){
    //Do something with posted data
    $out = htmlentities($_POST['firstname']).' has been abducted!';
}else{
    //Form has not been posted so show form
    $out = <<<FORM
<form action="" method="POST" >    
   <label for="firstname">First name:</label>
   <input type="text" id="firstname" name="firstname" /><br />
   <input type="submit" value="Report Abduction" name="submit" />
</form>
FORM;
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My first test Script</title>
</head>

<body>
<h1>My first test Script</h1>

<?php echo(isset($out))?$out:null; ?>

</body>
</html>