【发布时间】:2013-08-01 15:21:41
【问题描述】:
我快疯了,因为我想不通.. 我正在创建一个代码,告诉我将打印多少个面板。
PHP 代码是这样的:
<?php
$base = 400; //the width
$altezza = 300; //the height (no need for calculation)
$larg_fasce = 60; //the size of each piece (always 60cm)
$num_fasce = floor($base/$larg_fasce); //calc the numbers of piece needed to cover the $base
$dim_fasce = floor($base/$num_fasce); //calc the size of each piece
$resto = $base-($num_fasce*$larg_fasce); //calc the rest to cover the $base
/////////////
echo "Base: ".$base."<br>";
echo "Altezza: ".$altezza."<br>";
echo "Largh Fasce: ".$larg_fasce."<br><br>";
echo "Verranno fornite ".$num_fasce." fasce da ".$larg_fasce." cm - tot (".$num_fasce*$larg_fasce."cm)<br>";
if($resto != 0){
echo "Verra fornita 1 fascia da ".$resto." cm";
}
?>
此代码完美运行(当我手动调整 $base 大小时)。 我需要这个变量“$base”取自输入字段并实时更新,我该怎么做?
【问题讨论】:
标签: ajax split size real-time-updates