PHP Classes

File: ejemplo.php

Recommend this page to a friend!
  Classes of Fernando Castro Saenz   uploadfer   ejemplo.php   Download  
File: ejemplo.php
Role: Example script
Content type: text/plain
Description: ejemplo de uso de la clase uploadfer
Class: uploadfer
Validate and process uploaded image files
Author: By
Last change:
Date: 14 years ago
Size: 957 bytes
 

Contents

Class file image Download
<?
   
require_once'uploadfer.php';
   
$datos=$_FILES['archivo'];
    if(
$datos['name']!="")
    {
        if(
$datos['error']==0)
        {
           
$obj=new archivo ($datos,"../images/","si","altoX705");
            if(
$obj)
            {
               
$obj->subirArchivo();
                }
        }
        else
        {
            echo
"Ha ocurrido un error tipo ".$datos['error']." al cargar el archivo ";
        }
    }


?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
</head>

<body>
<form action="ejemplo.uploadfer.php" method="post" enctype="multipart/form-data" name="form1" id="form1">
  <label>
  <input name="archivo" type="file" id="archivo" />
  </label>
  <label>
  <input type="submit" name="Submit" value="Enviar" />
  </label>
</form>
</body>
</html>