开发者

PHP CHECKBOX Array Issue

开发者 https://www.devze.com 2022-12-27 06:45 出处:网络
I have a list of checkboxes like you would see in most email clients (You tick a box press delete then it deletes an email).

I have a list of checkboxes like you would see in most email clients (You tick a box press delete then it deletes an email).

<input type="checkbox" value="yes" name="box[]" />

The problem stands here ...

print_r($_POST['box']);//Returns nothing at all ...

var_dump($_POST['box']);// returns null...

I was reading something about register glo开发者_StackOverflow社区bals that php5 has turned it off for security reason.

Does anyone know what my options are ?


Just found out by playing about with values.

Make sure you check for the enctype attribute on the tag

should be <form method="post" enctype="multipart/form-data">

Hope someone else could find this helpful .

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号