此腳本必須在每次刷新時更新,但無法正常工作。借給我一隻手爲什麼這個SQL查詢不起作用?
$yp = mysql_query("select id from yyy where twitterid = '$tid'");
$qq = "update yyy set twitterid = '$tid',
twitterkullanici = '$twk',
tweetsayisi = '$tws',
takipettigi = '$tkpettigi',
takipeden = '$tkpeden',
nerden = '$nerden',
bio = '" . mysql_real_escape_string($bio) . "',
profilresmi ='$img',
ismi = '$isim'
where id = '$yp'";
$xx = mysql_query($qq);
什麼是不工作? mysql_error()說什麼? – 2010-02-05 16:33:26
將您構建的查詢輸出到屏幕上,您可能會看到語法錯誤。 – dnagirl 2010-02-05 16:36:31