-
Notifications
You must be signed in to change notification settings - Fork 0
/
datos_cuenta.php
96 lines (92 loc) · 2.95 KB
/
datos_cuenta.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<html>
<head>
<meta charset="UTF-8">
<title>Makeuplike</title>
<link rel="shortcut icon" href="imagenes/icono.ico" >
<link rel="stylesheet" href="estilos/estilos.css">
</head>
<body>
<header>
<?php
session_start();
if(!$_SESSION){
echo "<script language='javascript'>alert('Tienes que iniciar sesión');</script>";
echo "<script>location.href='iniciar_sesion.php';</script>";
}else{
echo "<div class='sesion'>
<a class='carro'href='carrito_de_compras.php'><img src='imagenes/carrito_de_compras.png'> Carrito de compras</a>
<a href='opciones_usuario.php'>",$_SESSION["correo_electronico"],"</a>
<a href='salir.php'>Cerrar sesión</a>
</div>";
}
?>
<a href="index.php"><img class ="logo" src="imagenes/logo.png" width="200px" height="135px"></a>
</header>
<nav>
<li><a href="index.php">Inicio</a></li>
<?php
include "conexion.php";
$link = conectarse();
if($link){
$result=mysqli_query($link,"select * from categoria where activo=1");
while($row=mysqli_fetch_array($result)){
echo "<li>",$row["nombre_categoria"],"
<ul>";
$result2 = mysqli_query($link,"select * from subcategoria where activo=1 and id_categoria = ".$row["id_categoria"]);
while($row2=mysqli_fetch_array($result2)){
echo "<li><a href='plantilla_subcategoria.php?id_subcategoria=",$row2["id_subcategoria"],"'>",$row2["nombre_subcategoria"],"</a></li>";
}
echo " </ul>
</li>";
}
}
?>
<div class="busqueda">
<form action="buscar.php" method="get">
<input type="search" name="busqueda" placeholder="Término de búsqueda"/>
<input type="image" src="imagenes/lupa.png" alt="Submit" />
</form>
</div>
</nav>
<div class="tabla">
<h1>Datos de la cuenta</h1>
<table>
<tbody>
<?php
$link = conectarse();
if($link){
$consulta = "select * from usuario where id_usuario=".$_SESSION["id_usuario"];
$result=mysqli_query($link,$consulta);
$row=mysqli_fetch_array($result);
echo "
<tr>
<td>Nombre:</td>
<td>",$row["nombre"],"</td>
</tr>
<tr>
<td>Apellidos:</td>
<td>",$row["apellidos"],"</td>
</tr>
<tr>
<td>Fecha de nacimiento:</td>
<td>",$row["fecha_nacimiento"],"</td>
</tr>
<tr>
<td>Correo electrónico:</td>
<td>",$row["correo_electronico"],"</td>
</tr>
<tr>
<td>Número telefónico:</td>
<td>",$row["telefono"],"</td>
</tr>
<tr>
<td colspan='2'><a href='editar_cuenta.php'>Cambiar datos</a></td>
</tr>
</tbody>
</table>
</div>
";
mysqli_close($link);
}
?>
</body>