Insertar imagen
Publicado por Joan Camilo Olmos (7 intervenciones) el 13/05/2019 16:12:08
Amigos Necesito Insertar y subir una foto a una bases de datos lo que tengo es esto
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<em><em><em><em><!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Registro</title>
<style>
h1{
text-align:center;
}
table{
background-color:#0FF;
padding:5px;
border:#666 5px solid;
}
</style>
</head>
<body>
<h1> REGISTRO DE EMPLEADOS</h1>
<form action="insertarRegistros.php" method="get" name="form1">
<table width="15%" align="center">
<tr>
<td> Cedula:</td>
<td><label for="cedula"></label>
<input type="text" name="cedula" id="cedula"></td>
</tr>
<tr>
<td> Nombres:</td>
<td><label for="nombres"></label>
<input type="text" name="nombres" id="nombres"></td>
</tr>
<tr>
<td> Apellidos:</td>
<td><label for="apellidos"></label>
<input type="text" name="apellidos" id="apellidos"></td>
</tr>
<form action="datosImagen.php" method="post" enctype="multipart/form-data">
<tr>
<td>Foto:</td>
<td><label for="foto"></label>
<input type="file" name="foto" id="foto" size="20"></td>
</tr>
</form>
<tr>
<td> Email:</td>
<td><label for="email"></label>
<input type="text" name="email" id="email"></td>
</tr>
<tr>
<td> Ciudad:</td>
<td><label for="ciudad"></label>
<input type="text" name="ciudad" id="ciudad"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="imagen" id="enviado" value="Registrar" /></td>
</tr>
</form>
</table>
</body>
</html>
--------------------------------------------------------------------------------------------------------------------------------------------------------
insertarRegistros.php
<?php
$cedula=$_GET["cedula"];
$nombres=$_GET["nombres"];
$apellidos=$_GET["apellidos"];
$email=$_GET["email"];
$ciudad=$_GET["ciudad"];
$foto=$_GET["imagen"];
global $conexion;
$db_host="localhost";
$db_nombre="madecraftt";
$db_usuario="root";
$db_pass="";
$conexion=mysqli_connect($db_host,$db_usuario,$db_pass,$db_nombre);
if(mysqli_connect_errno()){
echo "Fallo al conectar con la base de datos";
exit();
}
mysqli_select_db($conexion,$db_nombre) or die ("No se encuentra la base de datos");
mysqli_set_charset($conexion,"utf8");
$consulta="insert into empleado(id_empleado, nombre_empleado, apellido_empleado,email_empleado, ciudadResidencia_empleado)
values('$cedula','$nombres','$apellidos','$email','$ciudad')";
$resultado=mysqli_query($conexion, $consulta);
if($resultado==false){
echo"Error en la consulta";
}else{
echo"Registro guardado";
}
?>
<form action="menu.php" method="post" name="form1">
<tr>
<td colspan="2" align="center"><input type="submit"name="enviado"id="enviado"value="Menu"/></td>
</tr>
</form>
--------------------------------------------------------------------------------------------------------------------------------------------------------
datosImagen.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
// Recibimos los datos de la imagen
$nombre_imagen=$_FILES['imagen']['name'];
$tipo_imagen=$_FILES['imagen']['type'];
$tamaño_imagen=$_FILES['imagen']['size'];
if($tamaño_imagen<=3000000){
if($tipo_imagen=="image/jpeg" || $tipo_imagen=="image/jpg" || $tipo_imagen=="image/png"){
// ruta de la carpeta del servido
$carpeta_destino=$_SERVER['DOCUMENT_ROOT'] . '/Curso_PHP/';
// Movemos la imagen del directorio temporal al destino escogido
move_uploaded_file($_FILES['imagen']['tmp_name'],$carpeta_destino.$nombre_imagen);
}else{
echo"Solo se pueden subir imagenes jpeg/jpg/png";
}
} else{
echo "El tamaño es demasiado grande";
}
$db_host="localhost";
$db_nombre="madecraftt";
$db_usuario="root";
$db_pass="";
$conexion=mysqli_connect($db_host,$db_usuario,$db_pass,$db_nombre);
if(mysqli_connect_errno()){
echo "Fallo al conectar con la base de datos";
exit();
}
mysqli_select_db($conexion,$db_nombre) or die ("No se encuentra la base de datos");
mysqli_set_charset($conexion,"utf8");
$sql="insert into empleado (foto) values ('$nombre_imagen')";
$resultado=mysqli_query($conexion, $sql);
?>
Valora esta pregunta
0