我快疯了,因为我想不通.. 我正在创建一个代码,告诉我有多少面板将被拆分我的打印。
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”并实时更新,我该怎么做?