PHP筆記--資料庫操作

錢真多發表於2015-03-18

連線資料庫

$mysqli=new mysqli("localhost", "root", "123456", "card");

執行SQL語句

$result=$mysqli->query("select id, title from card where cid={$cid}");


相關文章