-4

我已经开始学习 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>

谁能告诉我我错过了什么?

谢谢

4

1 回答 1

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>
于 2012-06-06T07:05:07.420 回答