Y atenemos al menos los 5 pasos basicos para que funcione nuestro sistema de registro y reconocimientodel usuario.
Ahora pondre la pagina que mostrara el perfil del usuario cuando el sistema lo reconosca.
mostrar.php
Código PHP:
Ver original<?php
session_start(); //esta parte es para asegurar que `para ver su perfil el usuario tienen que estar conectado al sistema
$result_1= "SELECT * FROM usuarios where id = ". $_SESSION['id'] ."";
echo "<table width=\"325\" cellspacing=\"4\" cellpadding=\"4\">";
echo "<tr>";
echo "<td rowspan=\"2\" width=\"80\"style='border:1px solid #808000 ' ><b>";
echo "<img src='http://www.esquinadosamba.cl/Usuarios1/imagenes/thumbnails/$row[imagen]' >";//selecionamos la imagen de perfil del usuario
echo "</td>";
echo "<td width=\"80\" height=\"40\" style='border:1px solid #808000'>";
echo ' <b> Nick : </b>' . $_SESSION['nick'] . ''; //selecionamos su nombre de acuerdo a su session iniciada
echo "</td>";
echo "</tr>";
echo "<td width=\"80\" height=\"40\" style='border:1px solid #808000'>";
echo ' <b> Registro : </b>' . $row['fecha'] . ''; // La fechade registro
echo "</td>";
echo "</tr>";
echo "<td width=\"80\" height=\"40\"style='border:1px solid #808000'>";
echo '<b>Ultima visita <br><br><br></b>' . $row['timestamp'] . ''; //su hora de conexion
echo "</td>";
echo "<td width=\"80\" height=\"40\"style='border:1px solid #808000'>";
echo '<b>Conectado ahora <br><br><br></b> ' . $row['conectado'] . ''; //y su estado si esta conectado o no
echo "</td>";
echo "</tr>";
echo "</table >";
echo "<table width=\"325\" cellspacing=\"4\" cellpadding=\"4\">";
echo "<tr>";
echo "<td aling=\"right\" width=\"80\" height=\"40\"style='border:1px solid #808000'>"; //tambien su mail
echo " <b> E-mail : </b> ".$row ['mail'];
echo "</td>";
echo "</tr>";
echo "</table >";
echo"<br>";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Perfil del usuario</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<!--Bueno este formulraio es para que el usuario cambie su foto de perfil por la que el quiera-->
<table width="323" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#808000">
<tr>
<td width="332">
<form action="Usuarios1/imagenes/carga.php" method="post" enctype="multipart/form-data">
<p>Cambia tu imagen de perfil: <br>
<input name="fichero" type="file" size="20" maxlength="20">
<input name="submit" type="submit" value="Upload!">
</form> </td>
</tr>
</table>
</body>
</html>