[PHP-users 4587] Re: checkbox 配列の時間差

OHTSUKA Yohichi php-users@php.gr.jp
Tue, 08 Jan 2002 13:02:52 +0900


#スレッドに出来ずごめんなさい。

大塚です。

無事解決しました。
URL引数で配列を渡そうとしていました。
私の理解不足でした。

前述のソースを変更するならば、

a.php

<html>
<head></head>
<body>
<?php
if(isset($hoge)) {
        $n = count($hoge);
        print("$n<br>");
}
print("<form method=post action=a.php>");
print("<input type=checkbox name=hoge[] value=1>");
print("<input type=checkbox name=hoge[] value=2>");
print("<input type=checkbox name=hoge[] value=3>");
print("<input type=submit>");
print("</form>");
?>
</body>
</html>

ですね。