通过表单提交将数组添加到会话

时间:2016-10-27 19:01:08

标签: php html arrays function session-variables

我正在尝试在会话中将多个数组添加到多个数组(通过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”来查看它是否有效。但是没有输出也没有错误信息。如何解决这个问题?

0 个答案:

没有答案