如何在php docker中打印用户输入?

时间:2017-08-09 11:10:29

标签: php docker

我的dockerfile:

FROM php:7.0-apache
COPY src/ /var/www/html

这是在src/文件夹

index.php

<html>
<head>
<style>
label{display:inline-block;width:100px;margin-bottom:10px;}
</style>


<title>Add name</title>
</head>
<body>

<form method="post" action="">
<label>First Name</label>
<input type="text" name="first_name" />
<br />

<input type="submit" value="Add name">
</form>

</body>
</html>

process.php文件夹

中只有一个src/
<?php

echo $_POST["first_name"];

我填写了一个名字,我提交但是当我访问process.php网页时,它没有显示我提交的名称。我做错了什么?

0 个答案:

没有答案