1
2
3
4
<?php
	
  define("MAX_INFO_SIZE",500);
...

PHP On file upload validation

by lajos, October 03, 2008 03:48

Thanks so much for your hel...

Avatar Talk
1
2
3
4
define("MAX_INFO_SIZE",500);
define("MAX_DATA_SIZE",100000);
define("MAX_THUMBNAIL_SIZE",10000);
...

PHP file upload validation

by lajos, October 02, 2008 04:52, 4 refactorings, tagged with upload, validation

This function validates fil...

Avatar Talk