Web托管环境中的Http Form帖子

时间:2011-04-23 02:25:40

标签: php http web-hosting

我是PHP,HTML,MYSQL和新手的新手虚拟主机。我在我的开发机器上安装了mamp。一切顺利。当我把文件放在网络服务器上的东西没有用。

这是我想解决的问题: 我有http表单和post方法调用php脚本并在数据库中设置记录。

 1. i have a HTTP form like this`<form action="addnewemployee.php" method="post">`. Its named in a file index.php.
 2. When i press the submit button, i get 404 not found for the file \addnewemployee.php.

一切都在我的本地MAMP上运行,但不在生产服务器上。

欢呼声 阿伦

1 个答案:

答案 0 :(得分:0)

您可能忘记创建新文件

addnewemployee.php

并输入这些代码

<?php
var_export($_POST);