betterCode() PHP 2025

Voting

: min(three, eight)?
(Example: nine)

The Note You're Voting On

wizzard351 at yahoo dot com
11 years ago
This is also needed for <input type=file multiple> elements.

So, if you have an input element like this:
<input type="file" multiple="multiple" name="foobar" />
This should be written as
<input type="file" multiple="multiple" name="foobar[]" />
else you'll only be able to get one of the files.

<< Back to user notes page

To Top