-
Notifications
You must be signed in to change notification settings - Fork 2
/
pagina_datos.php
63 lines (41 loc) · 1.15 KB
/
pagina_datos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
table, tr, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<?php
$usuario=$_GET["usu"];
$contra=$_GET["con"];
require("datos_conexion.php");
$conexion=mysqli_connect($db_host,$db_usuario,$db_contra);
if(!$conexion) {
echo "Fallo al conectar con la BBDD";
exit();
}
mysqli_select_db($conexion, $db_nombre) or die ("No se encuentra la base de datos");
mysqli_set_charset($conexion, "utf8");
//$consulta="select * from productos where nombreartículo like '%$busqueda%'";
$consulta="select * from usuarios where usuario = '$usuario' and contra='$contra'";
echo "$consulta<br><br>";
$resultados=mysqli_query($conexion,$consulta);
while ($fila=mysqli_fetch_assoc($resultados)) {
echo "Bienvenido $usuario <br> Estos son tus datos: <br>";
echo "<table><tr><td>";
echo $fila['usuario'] . "</td><td>";
echo $fila['contra'] . "</td><td>";
echo $fila['tfno'] . "</td><td>";
echo $fila['direccion'] . "</td><td></tr></table>";
echo "<br><br>";
}
mysqli_close($conexion);
?>
</body>
</html>