第一步:
$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 "输入成功";
大体思路是这样的。可以多研究下。