Code: Select all
<input type="file" name="images[]" class="wwIconified" value="upload"/><br />Code: Select all
if ( !upload )
{
error ="You must upload picture file";
}
Moderator: General Moderators
Code: Select all
<input type="file" name="images[]" class="wwIconified" value="upload"/><br />Code: Select all
if ( !upload )
{
error ="You must upload picture file";
}
Code: Select all
if (!isset($_FILES['images']))
{
// whatever
}