Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
//стоимость заказа с доставкой
$q = db_query("select order_amount from SS_orders where orderID=".$_GET["orderID"]);
		$row = db_fetch_row($q);
		if ($row) //сумма найдена в файле с описанием квитанции
		{
		$smarty->assign( "invoice_amount", num2words($row[0]) );
		}
		
		//доставка
		
		$q = db_query("select shipping_cost from SS_orders where orderID=".$_GET["orderID"]);
		$row = db_fetch_row($q);
		if ($row) //сумма найдена в файле с описанием квитанции
		{
		$smarty->assign( "invoice_amount1", num2words($row[0]) );
		}
	
