Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$gesamt_query = tep_db_query("select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, sum(ot.text) as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . $_GET['cID']. "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' order by orders_id");
$gesamt = tep_db_fetch_array($gesamt_query);
1140 - Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, sum(ot.text) as order_total, s.orders_status_name from orders o, orders_total ot, orders_status s where o.customers_id = '7' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '2' order by orders_id
[TEP STOP]