Hola, nuevamente yo. Hice algo asi con el codigo modificarperfil.php, quité el update_cuenta.php, pero igual no se hace la actualizacion.
modificarperfil.php:
modificarperfil.php:
Código (php) [Seleccionar]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
error_reporting(E_ALL ^ E_NOTICE);
session_name('pLogin');
session_set_cookie_params(2*7*24*60*60);
session_start();
$usuario = $_SESSION['usuario'];
include("function.php");
include("getdata.php");
include("connect.php"); //incluimos el connect.php que contiene los datos de la conexión a la db y la sesión
if(!isset($usuario)){
echo 'No se ha seleccionado ningun usuario.';
}else{
$query=mysql_query("SELECT * FROM prueba WHERE usuario='$usuario' ");
if(mysql_num_rows($query)>0){
$query=mysql_fetch_array($query);
//todo comprobado, ahora solo falta mostrar los datos
echo 'Bienvenid@ <b>'.$query['usuario'].'</b><br>';
}else{
echo 'El usuario seleccionado no existe';
}
}
?>
<?php
if ($action == "submit")
{
mysql_query("update prueba set firstname='$firstname',lastname='$lastname' where usuario=$usuario") or mysql_error();
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Modificar perfil|Deemo|</title>
<link href="modificarperfil.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
background-image: url(../images/fondito.png);
background-repeat: repeat;
}
-->
</style>
</head>
<body>
<div id="container_logo"></div>
<div id="container_modify"><div id="cont_first">
<div id="container_tabla">
<form method="post" action="#" >
<table width="330" border="0">
<tr>
<td width="213">Nombre de usuario:</td>
<td width="101"><input type="text" name="usuario" id="usuario" value=" <?php echo $query[usuario];?> " /></td>
</tr>
<tr>
<td>Nombre(s):</td>
<td><input type="text" name="firstname" id="firstname" value=" <?php echo $query[firstname]; ?> " /></td>
</tr>
<tr>
<td>Apellido:</td>
<td><input type="text" name="lastname" id="lastname" value=" <?php echo $query[lastname];?> " /></td>
</tr>
</table>
<div id="container_submit"> <input type="hidden" name="action" value="submit"><input type=image height=23 alt=Save width=87 src="../images/boton_submit.gif" border=0 name=submit> </div>
</form>
</div>
</div>
</div>
</body>
</html>