Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮我处理这个代码,但标量值作为数组有错误?
$getal = $_POST['getal']; For($teller=1; $teller<=11; $teller=$teller+1) { $uitkomst[$teller]=$teller*$getal; }
$getal = $_POST['getal']; $uitkomst = array(); For($teller=1; $teller<=11; $teller=$teller+1) { $uitkomst[$teller]=$teller*$getal; }