Web 托管环境中的 Http 表单发布

发布于 2024-11-03 09:08:58 字数 441 浏览 3 评论 0原文

我是 PHP、HTML、MYSQL 和 PHP 的新手。网络托管。我的开发机器上有 mamp 设置。一切都很顺利。当我将文件放在网络服务器上时,事情不起作用。

这是我试图解决的问题: 我有带有 post 方法的 http 表单,调用 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 上运行,但在生产服务器上却不起作用。

干杯 阿伦

I am newbie in PHP, HTML, MYSQL & web hosting. i have mamp setup on my development machine. Everything went well. When i put the file on the webserver things did not work.

here is the problem i am trying to solve:
i have http form with post methods call the php script and setup records in database.

 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.

everything is working on my local MAMP, but not on the production server.

cheers
Arun

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

女皇必胜 2024-11-10 09:08:58

您可能忘记创建一个新文件

addnewemployee.php

并放入这些代码

<?php
var_export($_POST);

you might have forgot to create a new file

addnewemployee.php

and put these code

<?php
var_export($_POST);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文