Código PHP:
<?php
include_once("con.php");
$consulta="select pass, nombre, email, web from usuario";
$resultado=mysql_query($consulta);
$cant=mysql_num_rows($resultado);
$fila=mysql_fetch_array($resultado);
?>
<form action="profile.php" method="post">
<p><?php echo $_SESSION[nombre];?><br><br>
<b>web: </b>
<input style="margin:0px 0px 0px 120px;" type="text" name="nick" value="<?php echo($fila[web]);?>" class="btn2"><br><br>
<b>email: </b>
<input style="margin:0px 0px 0px 110px;" type="text" name="mail" value="<?php echo($fila[email]);?>" class="btn2"><br><br>
<b>cambiar password: </b>
<input style="margin:0px 0px 0px 15px;" type="password" name="pass" value="<?php echo($fila[pass]);?>" class="btn2">
</p>
</form>
gracias