-
Notifications
You must be signed in to change notification settings - Fork 0
/
subirarchivo.php
74 lines (58 loc) · 1.77 KB
/
subirarchivo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
set_time_limit (5000);
if($_SERVER['REQUEST_METHOD'] == "POST" && isset($_FILES["nombrearchivo"]["type"]))
{
$target_file = basename($_FILES["nombrearchivo"]["name"]);
$uploadOk = 1;
$xlsxFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// print_r($xlsxFileType);
// Check file size
if ($_FILES["nombrearchivo"]["size"] > 67108864) {
$errors[]= "Lo sentimos, el archivo es demasiado grande. Tamaño máximo admitido: 0.5 MB";
$uploadOk = 0;
}
// Allow certain file formats
if((strtoupper($xlsxFileType) != "TXT")) {
$errors[]= "Lo sentimos, sólo archivos txt son permitidos.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
$errors[]= "Lo sentimos, tu archivo no fue subido.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["nombrearchivo"]["tmp_name"], $target_file)) {
$messages[]= "El Archivo ha sido subido correctamente.";
} else {
$errors[]= "Lo sentimos, hubo un error subiendo el archivo.".$_FILES["nombrearchivo"];
}
}
if (isset($errors)){
?>
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Error!</strong>
<?php
foreach ($errors as $error){
echo"<p>$error</p>";
}
?>
</div>
<?php
}
if (isset($messages)){
?>
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Aviso!</strong>
<?php
foreach ($messages as $message){
echo"<p>$message</p>";
}
// echo $message;
?>
</div>
<?php
}
}
?>