-2
我是PHP新手我想知道如何創建總賬。
我有兩張表收到發票和付款。Php總賬查詢
我想創建使用兩個表的總帳。
mysql_query("select * from invoice");
mysql_query("select * from invoice");
我是PHP新手我想知道如何創建總賬。
我有兩張表收到發票和付款。Php總賬查詢
我想創建使用兩個表的總帳。
mysql_query("select * from invoice");
mysql_query("select * from invoice");
也許你想總的算,你可以做這樣的:
$total = mysql_query("SELECT count(money) as total FROM invoice");//your query string
$res = mysql_fetch_array($total);
$count = $res['total']; //statistics
查找「怎麼問一個問題」計算器上的重要指導方針。 –
警告:'mysql_ *'函數[不再支持或維護](https://stackoverflow.com/questions/12859942)。他們[在PHP 5.5.0中棄用](https://wiki.php.net/rfc/mysql_deprecation)和[在PHP 7.0.0中刪除](https://php.net/manual/en/function.mysql -connect.php#function.mysql連接重refsynopsisdiv)。強烈建議您遷移到[MySQLi](https://php.net/manual/en/book.mysqli.php)或[PDO_MySQL](https://php.net/manual/en/ref.pdo -mysql.php)。 – Pang