我的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网页时,它没有显示我提交的名称。我做错了什么?