你得說清楚兩表情況,另外目的是什么.這樣問,沒有人能回答你.
廣陽網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)于2013年成立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。
我只能告訴你用sql的表連接.
select a.*,b.* from table_a a,table_b b where a.id = b.id
=====================
我假定你attid是兩表連接的關(guān)系字段
select a.*,b.* from A a,B b where a.attid=b.attid and uid='27528' order by a.itemid
這個(gè)只需要確定兩個(gè)表之間字段關(guān)系就行了,比如 原來顯示 cid 的地方,改成 cate_id 這樣的,如果是兩個(gè)數(shù)據(jù)表在同一數(shù)據(jù)庫(kù)中,那么直接查詢顯示就行了,如果兩個(gè)表在兩個(gè)不同的數(shù)據(jù)中,那么增加一個(gè)數(shù)據(jù)連接就行了
?php
$link_A=mysql_connect("localhost:917","root","skcg1024",true);
mysql_select_db("db_a",$link_A);
$link_B=mysql_connect("localhost:917","root","skcg1024",true);
mysql_select_db("db_a",$link_B);
print_r($link_A);
print_r($link_B);
mysql_connect的第四個(gè)參數(shù)設(shè)置成true,表示創(chuàng)建一個(gè)新的連接
這樣你就獲得咯兩個(gè)數(shù)據(jù)庫(kù)連接,然后指定對(duì)應(yīng)的數(shù)據(jù)庫(kù)即可。但不建議這么做
建議采用數(shù)據(jù)庫(kù).數(shù)據(jù)表的格式?訪問存儲(chǔ)數(shù)據(jù),代碼簡(jiǎn)練,邏輯清楚
table width="50%" border="0" tr tdID/td tdID2/td tdorder1/td tdorder2/td tdorder3/td tdCAS/td /tr ?php //連接數(shù)據(jù)庫(kù) $conn=@ mysql_connect("127.0.0.1","root","root") or die("連接數(shù)據(jù)庫(kù)失敗!"); mysql_select_db("test",$conn) or die("連接數(shù)據(jù)庫(kù)失敗!"); mysql_query("set names 'GBK'"); //連接結(jié)束 //接收提交過來查詢的ID $id=$_POST["id"]; //查詢數(shù)據(jù)庫(kù)相關(guān)數(shù)據(jù) $sql="select * from test where ID2='".$id."' order by id desc"; // $sql="select a.*,b.* from test a inner join test2 b on a.ID2=b.ID2" ID2='".$id."' order by id desc; $query=mysql_query($sql); //循環(huán)輸出 while($row=mysql_fetch_array($query)){ ? tr td?php echo $row["ID"];?/td td?php echo $row["ID2"];?/td td?php echo $row["order1"];?/td td?php echo $row["order2"];?/td td?php echo $row["order3"];?/td td?php echo $row["CAS"];?/td /tr ?php } ? /table form name="form1" method="post" action="" input type="text" name="id" input type="submit" name="Submit" value="查詢" /form