-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarga_f.php
59 lines (58 loc) · 1.36 KB
/
carga_f.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
<?php
set_time_limit(1000);
ini_set('memory_limit','128M');
?>
<!DOCTYPE html>
<html>
<body>
<div class="line"></div>
<div class="wrapper">
<div class="widget">
<form action="carga_f.php" method="POST" enctype="multipart/form-data">
<fieldset>
<table cellpadding="0" cellspacing="0" width="100%" class="sTable">
<tr>
<td>Seleccione archivo:</td>
<td><input type="file" name="archivoCSV" /></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="2" align="right">
<input type="submit" value="Aceptar" name="cargarCSV" />
</td>
</tr>
</table>
</fieldset>
</form>
</div>
</div>
<p> </p>
<table border="1" cellspacing="0" cellpadding="3" width="100%">
<tr>
<td>Código</td>
<td>Centro Archivo</td>
<td>Centro Base Datos</td>
</tr>
<?php
if(isset($_POST)||isset($_FILES)){
$username="root";
$password="r1r7C1h6ZG4ZVWF";
$database="cohorte";
mysql_connect(localhost,$username,$password);
mysql_select_db($database) or die( "Unable to select database");
if ($_FILES["archivoCSV"]["error"] == 0 && $_FILES["archivoCSV"]["size"] > 0) {
copy ( $_FILES["archivoCSV"]["tmp_name"] , "/opt/tomcat/webapps/Cohorte/Documentos/RespaldosBase/".$_FILES["archivoCSV"]["name"] );
}
mysql_close();
}
?>
</table>
</body>
</html>