This topic is locked

Limit picture size

10/24/2007 12:28:08 PM
PHPRunner General questions
S
susoft author

Hello how can I limit the size of a graphic file that can bi upload in a entry mask.
Thanks for any hint

Andreas, Switzerland

Alexey admin 10/25/2007

Andreas,
use Before record added/u[dated event for this.

Here is the sample code:

if($_FILES["value_FieldName"]["size"]>1000000)

unset($values["FieldName"]);



This code works when files are saved in database.

If they are stored in a server directory use this code:

if($_FILES["file_FieldName"]["size"]>1000000)

unset($values["FieldName"]);



Please note that field names are case-sensitive here.