Web 托管环境中的 Http 表单发布
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能忘记创建一个新文件
addnewemployee.php
并放入这些代码
you might have forgot to create a new file
addnewemployee.php
and put these code