Quiero incluir un sistema de filtrado en mi script.
Aquí está:
<?php
$allowedExts = array("gif", "jpeg", "jpg", "png","bmp");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
if (in_array($extension, $allowedExts)){
/...
hecha
01.10.2013 - 18:56