Modificar datos de Usuario en PHP

Iniciado por Maistere, 8 Noviembre 2013, 17:52 PM

0 Miembros y 1 Visitante están viendo este tema.

Maistere

Hola buenas, estamos diseñando una página web, y necesitamos hacer que el usuario pueda modificar sus datos, pero no hay manera de encontrarlo, y no tengo ni idea, si me pudieseis echar una mano, os lo agradecería bastante, el documento es el siguiente:

Código (php) [Seleccionar]
<?php
include(
"seguridad.php");
?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="bred<" />
<meta name="keywords" content="bred<" />
<meta name="description" content="bred<" />
<meta name="robots" content="all" />
<title>bred</title>

<style type="text/css" title="currentStyle" media="screen">
@import "./css/usuario.css";
</style>
   
</head>

<body>
<div id="wrapper">
<div id="top">
    <h1 class="logo">Zona<span class="green1">Usuarios</span></h1>
        <ul id="topnavi">
        <li class="active"><a href="usuario.php">Atr&aacute;s</a></li>
        </ul>
    </div>
    <div id="header">
    <img src="img/header.jpg" alt="" width="1000" height="183" />
    </div>
    <div id="main">
<div class="ic"></div>
    <div id="left-part">
            </ul>
        </div>
        <h1><b>Datos usuario</b></h1>
            <p><img src="img/datos.jpg" alt="" width="600" height="425" class="right" />
<form action="" method="POST">
<div id="BloqueFormulario">
<label for="NomUsuario"><b>Nombre: </b><br></label>
<input name="NomUsuario" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
</div>
<br>
<div id="BloqueFormulario">
<label for="Pass"><b>Apellidos: </b><br></label>
<input name="Pass" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
<br>
<br>
</div>
<div id="BloqueFormulario">
<label for="NomUsuario"><b>DNI: </b><br></label>
<input name="NomUsuario" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
</div>
<br>
<div id="BloqueFormulario">
<label for="Pass"><b>Direcci&oacute;n: </b><br></label>
<input name="Pass" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
<br>
<br>
</div>
<div id="BloqueFormulario">
<label for="NomUsuario"><b>Tel&eacute;fono: </b><br></label>
<input name="NomUsuario" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
</div>
<br>
<div id="BloqueFormulario">
<label for="Pass"><b>Sexo: </b><br></label>
<input name="Pass" value="" size="40" maxlength="100" type="text" class="CampoFormulario">
<br>
</div>
<br>
<input type="submit" name="Mostrar" value="Cambiar Datos"/>
</div>
        </div>
        </div>
    </div>
    <div id="footer">
    <p>© Copyright 2013. All Rights Reserved.
    </div>
</div>
</body>
</html>

Hadess_inf

¿ Y donde es que guardar el identificador del usuario en cuestión ? - ¿ En que etiqueta HTML lo almacenas ?