La cuestion es la siguiente, al introducir esos caracteres salta el mensaje de error, pero si no se introducen, no puedo lograr que salte el mensaje de Datos guardados con exito.
Dejo el codigo para que vean que es lo que estoy haciendo mal:
update.php:
Código PHP:
Ver original
<!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" xml:lang="es" lang="es-es"> <head> <?php include('connect.php'); //incluimos el config.php que contiene los datos de la conexión a la db $usuario=$_SESSION['usuario']; $errcnt=0; { { } else { } { $errs[$errcnt]="Firstname must be provided"; $errcnt++; } { $errs[$errcnt]="Firstname can not have any special character (e.g. & ; < >)"; $errcnt++; } { $errs[$errcnt]="Lastname must be provided"; $errcnt++; } { $errs[$errcnt]="Lastname can not have any special character (e.g. & ; < >)"; $errcnt++; } { $errs[$errcnt]="Ocupacion debe ser completada"; $errcnt++; } { $errs[$errcnt]="Ocupacion no debe tener caracteres especiales (e.g. & ; < >)"; $errcnt++; } if($errcnt==0) { UPDATE members WHERE usuario='$_SESSION[usuario]' "); } { $firstname=$_REQUEST["firstname"]; $lastname=$_REQUEST["lastname"]; $ocupacion=$_REQUEST["ocupacion"]; if ( $errcnt<>0 ) { ?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>prueba</title> </head> <body> <div id="prueba"> <tr> <td colspan="2"><strong>No se pudo ejecutar el update debido a las siguientes razones</strong></td> </tr> <tr height="10"> <td colspan="2"></td> </tr> <?php for ($i=0;$i<$errcnt;$i++) { ?> <tr valign="top"> <td width="6%"> <?php echo $i+1;?></td> <td width="94%"><?php echo $errs[$i]; ?></td> </tr> <?php } ?> </table> <?php } } else { echo '<span class="Estilo24">Datos Guardados con éxito</span>'; } } ?> </div> </body> </html>
Gracias