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>

すべてのファイルでchmod777(それは悪いことですが、サイトはまだ公開されていません)。

さらに情報が必要な場合はコメントしてください。

チュートリアル私は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」用であり、「items」を使用しているようです。挿入する内容が正しく、データベースエラーが表示されていないことを確認してください。これを行うには、「Content-type:text /xml」を「Content-type:text」に変更します。

于 2012-12-19T03:11:00.147 に答える