Prueba esto
archivo Index.php
Código HTML:
Ver original<!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"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--
#apDiv1 {
position:absolute;
width:332px;
height:35px;
z-index:1;
}
-->
<form action="respuesta.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <table width="100%" border="1"> <td width="36%">Subir archivo:
</td> <td width="64%"><input type="file" name="archivo" id="archivo" /></td> <td><input type="submit" name="button" id="button" value="Enviar" /></td>
respuesta.php
Código PHP:
Ver original<?php
$ruta = "archivos/";
copy($HTTP_POST_FILES['archivo']['tmp_name'], $ruta.$HTTP_POST_FILES['archivo']['name']); }
echo "<script>
alert('El archivo a sido guardado con exito');
location.href ='index.php';
</script>";
?>
por ultimo creas una carpeta llamada archivos o el nombre que quieras....