Y si tratas asi?:
Código PHP:
$id = $_REQUEST['id'];
$query = "select titulo, contenido from tema where id = '$id'";
$rs = mysql_query($query);
while($row = mysql_fetch_array($rs)){
echo "<p>".$row['titulo']."<br />";
echo nl2br($row['contenido'])."<br />";
echo "<a href='index.php'>regresar</a></p>";
}