正確なエラー
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をフォローしています