Código PHP:
if($_GET['error'] == 1){
$message = "Este usuario no exite";
$template = file_get_contents("templates/game/error.tpl");
echo $template;
}elseif($_GET['error'] == 2){
$message = "La contraseña es incorrecta";
$template = file_get_contents("templates/game/error.tpl");
echo $template;
}
Código:
Como lo podría acer? <table cellspacing="0"> <tr> <td>Error nº <? echo $_GET['error']; ?></td> </tr> <tr> <td><? echo $message; ?></td> </tr> <tr> <td></td> </tr> </table>