Aquí el código fuente de todo el scrip completo:
Código PHP:
Ver original<!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" >
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<!-- Titulo -->
<title>werwerwe</title>
<!-- Estilos -->
<link href="../estilos/estilo_mensaje.css" type="text/css" rel="stylesheet"></link>
<!-- Scrips -->
<script type="text/javascript" src="scrip.js"></script>
</head>
<body>
<?php
require("configuracion/conectar.php");
$id_mensaje = $_GET['id'];
$tema = $_GET['tema'];
$consulta="SELECT * FROM mensajes WHERE id_mensaje='".$id_mensaje."'";
?>
<!-- Encabezado con menu -->
<div class="menu_derecha">
<?php
if(isset($_SESSION['nombre_usuario'])) { echo '<a href="editor.php">Responder</a>';
}
else {
echo '<a href="http://www.forosdelweb.com/f18/usuarios/ingresar.php">Iniciar Sesión</a> <a href="http://www.forosdelweb.com/f18/usuarios/registro.php">Registrarse</a>';
}
?>
</div>
</div>
<div class="contenedor">
<div class="contenido">
<div class="barra_titulo_div">
<?php
echo '<table class="barra_titulo">
<tr>
<td><b>Titulo:</b></td>
<td>'.$FORO["titulo_mensaje"].'</td>
<td><b>Fecha:</b></td>
<td>'.$FORO["fecha_mensaje"].'</td>';
}
?>
</tr>
</table>
</div>
</div>
</div>
<?php
$autor = $FORO["autor_mensaje"];
$consulta2="SELECT * FROM usuarios WHERE usuario='".$autor."';";
echo ('
<div class="usuario">
<div class="avatar">
<img src="" alt="" height="135px" width="150px"/>
</div>
<table class="tabla_usuario" cellpadding="3">
<tr>
<td><b>Usuario:</b></td>
<td>'.$FORO2["autor_mensaje"].'</td>
</tr>
<tr>
<td><b>Nivel:</b></td>
<td>'.$FORO2["nivel"].'</td>
</tr>
<tr>
<td><b>Mensajes:</b></td>
<td>'.$FORO2["numero_mensajes"].'</td>
</tr>
<tr>
<td><b>Karma:</b></td>
<td>'.$FORO2["puntuacion"].'</td>'); }
?>
</tr>
</table>
</div>
</body>
</html>