Ejemplo 1: archivo de carga php
if(isset($_FILES['image']))$errors=array();$file_name=$_FILES['image']['name'];$file_size=$_FILES['image']['size'];$file_tmp=$_FILES['image']['tmp_name'];$file_type=$_FILES['image']['type'];$file_ext=strtolower(end(explode('.',$_FILES['image']['name'])));$extensions=array("jpeg","jpg","png");if(in_array($file_ext,$extensions)===false)$errors[]="extension not allowed, please choose a JPEG or PNG file.";if($file_size>2097152)$errors[]='File size must be excately 2 MB';if(empty($errors)==true)move_uploaded_file($file_tmp,"images/".$file_name);echo"Success";elseprint_r($errors);?>
Ejemplo 2: código básico para cargar archivos en php
//This is the minimal code for an image upload for first time learners
//html portion
DOCTYPEhtml><html><head><title>ImageUploadtitle>head><body><formaction="upload.php"method="post"enctype="multipart/form-data"><label>Usernamelabel><inputtype="text"name="username"><br><label>UploadImagelabel><inputtype="file"name='myfile'><br/><inputtype="submit"value="upload">form>body>html>
//php portion
$user=$_POST['username'];$image=$_FILES['myfile'];echo"Hello $user
";echo"File Name:: ".$image['name'];move_uploaded_file($image['tmp_name'],"photos/".$image['name']);//here the "photos" folder is in same folder as the upload.php, //otherwise complete url has to be mentioned?>
Si para ti ha sido provechoso nuestro artículo, sería de mucha ayuda si lo compartieras con otros programadores de esta forma nos ayudas a dar difusión a nuestra información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)