我正在尝试在会话中将多个数组添加到多个数组(通过array_push)。 Array填充了html表单的变量。这是代码:
<?php
session_start();
$_SESSION['warenkorb'] = array();
echo("
<form>
Anzahl: <input style='width: 60px;' type='number' name='anzahl' required/>
<input type='submit' value='Hinzufügen' onclick='add(".$item["id"]. ", anzahl)'/>
</form>
");
function add($id, $amount) {
echo "$amount of $id";
}
我在add函数中使用了“echo”来查看它是否有效。但是没有输出也没有错误信息。如何解决这个问题?