selectimage.php :
Código HTML:
<form action="resizeimage.php" method="post" enctype="multipart/form-data"> Archivo: <input name="imagen" type="file"> <input name="submit" type="submit" value="Upload!"> </form>
resizeimage.php :
Código PHP:
<?php
//acordate que aca se hace todo, haya se hace el imagne nada mas
error_reporting(E_ALL);
ini_set('display_errors', 1);
if ($_FILES['imagen']['type'] != "image/jpg" || $_FILES['imagen']['type'] != "image/jpeg" || $_FILES['imagen']['type'] != "image/gif" || $_FILES['imagen']['type'] != "image/png") {
?>
<script LANGUAGE="JavaScript">
function redireccionar()
{
javascript:history.go(-1)
}
setTimeout ("redireccionar()", 5000);
</script>
<?php
exit;
}
?>
Gracias de antemano :)