Y ya puesto como le puedo decir los tipos de archivo que quiero que me suban si solo quiero .jpeg y .gif?
Código PHP:
<?php
// Edit upload location here
$destination_path = getcwd().DIRECTORY_SEPARATOR;
// $destination_path = "/img";
$result = 0;
$target_path = $destination_path . basename( $_FILES['myfile']['name']);
if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) {
$result = 1;
}
sleep(1);
?>