PHP发布错误

时间:2012-01-10 11:28:44

标签: php html database

我正在尝试使用PHP从网站连接到数据库。

我正在使用以下php -

<?php
$con = mssql_connect("Server","user","password");
if (!$con)
  {
  die('Could not connect: ' . mssql_error());
  }

// some code
?>

我正在尝试使用 -

将网络表单的结果发送到数据库
 <form action="insert.php" method="POST">

但是我收到了这个错误 -

Server Error in '/' Application.

The HTTP verb POST used to access path '/insert.php' is not allowed.

我该如何解决这个问题?提前谢谢。

1 个答案:

答案 0 :(得分:5)

  

不允许使用用于访问路径'/insert.php'的HTTP谓词POST。

与PHP无关。

与您的数据库无关。

您的网络服务器拒绝将(POST)请求传递给PHP,因为它已配置为不。