Listo ya lo hice andar de esta manera:
Código PHP:
if($boton) {
$path="Gallery1";
if (is_uploaded_file($HTTP_POST_FILES['archivo']['tmp_name'])) {
if($HTTP_POST_FILES['archivo']['size'] < 85000) {
if($HTTP_POST_FILES['archivo']['type']=="image/gif" || $HTTP_POST_FILES['archivo']['type']=="image/jpeg" || $HTTP_POST_FILES['archivo']['type']=="image/pjpeg") {
copy($HTTP_POST_FILES['archivo']['tmp_name'], "$path/$archivo");
$subio = true;
}
}
}
para aquel que tenga el mismo problema y quiera meterlo en diferentes carpetas, incluso usando la variable path el usuario puede elegir donde guardarla...saludos!