Configuración: servidor de pruebas WampSever5 con PHP5 y Apache 2.4 sobre Windows Vista :(
Para todos aquellos que tengan problemas como el siguiente:
Undefined index: APP13 in . . . .
y
Use of undefined constant 'name'
Use of undefined constant 'sizetext'
fijense k no tiene comillas en todo [sizetext] debe ser ['sizetext'] y [name] debe ser ['name']
Asi debe quedar
list($width, $height, $type, $attr) = getimagesize("$path/$file['name']", $info);
list($width, $height, $type, $attr) = getimagesize($path."/".$file['name'], $info);
notar las comillas
En PHP.ini
Activar
error_reporting = E_ALL & ~E_NOTICE
y register_globals = On notar que pasa de off a on
Para solucionar
Notice: Undefined index: uploading in C:\wamp\www\presentacion\uploader\index.php on line 6
debe quedar de la siguiente manera
$uploading= isset ($_POST['uploading']) ? $_POST['uploading'] : '';