0

确切的错误

This page contains the following errors:
error on line 3 at column 1: Extra content at the end of the document
Below is a rendering of the page up to the first error.

我的 PHP 文件

 <?php
 header( 'Content-type: text/xml' );
 mysql_connect( "mysql3.000webhost.com", "Username", "Password" );
 mysql_select_db( 'Ddb' );
 mysql_query( "INSERT INTO items VALUES ( null, null, '".
 mysql_real_escape_string( $_REQUEST['user'] ).
 "', '".
 mysql_real_escape_string( $_REQUEST['message'] ).
 "')" );
?>
<success/>

我的 HTML 文件(我认为这与错误无关。)

<html>
 <head>
  <title>Add Definition Form</title>
 </head>
 <body>
  <form action="add.php" method="POST">
    User: <input name="user" /><br />
    Message: <input name="message" /><br />
    <input type="submit" />
  </form>
 </body>
</html>

chmod 777 所有文件(我知道那很糟糕,但该网站尚未公开)。

如果您需要更多信息,请发表评论。

教程我正在关注http://www.ibm.com/developerworks/library/x-ioschat/index.html#l3ioschat/index.html#l3

4

1 回答 1

1

完全遵循 IBM 文档中提到的要点。我在http://nixblog.webatu.com/test.html上上传了一个测试页面,它可以工作。

所以不确定你做错了什么。

根据示例,数据库表插入用于表“chatitems”,您似乎正在使用“项目”。只需确保您插入的内容是正确的并且它不会显示任何数据库错误。为此,将“内容类型:文本/xml”更改为“内容类型:文本”

于 2012-12-19T03:11:00.147 回答