第一步:
$url="http://www..com/index.php";
$file = file_get_contents($url);
先獲取數據。
-------------------------
第二部:
獲取數據,寫入資料庫
$q =$_POST['question'];
$a = $_POST['answer'];
$con = mysql_connect("localhost","joe","123");
if (!$con)
{
echo 'Could not connect: ' . mysql_error();
}
mysql_select_db("joe",$con);
mysql_query("INSERT INTO message VALUES ('$q', '$a', '無')");
mysql_close($con);
echo "輸入成功";
大體思路是這樣的。可以多研究下。