Código PHP:
<?php
require('datos.php');
$secreto = htmlspecialchars($_POST['scr_texto']);
$sexo = (int)$_REQUEST['sexo'];
$edad = (int)substr($_POST['scr_edad'],0,2);
$fecha = date ( "j/n/Y h:i");
mysql_query("INSERT INTO secretos
(secreto, sexo, fecha, edad, estado)
VALUES ('$secreto', '$sexo', '$fecha', '$edad', '$auto_activacion')",
$conexion) or die("Problemas en el select".mysql_error());
mysql_close($conexion);
echo'<div id="secreto_'.$reg['id'].'" class="secreto"><div class="secr_titulo tit_sexo'.$sexo.'"><span class="display"><big>'.$edad.'</big><small>años</small></span><span class="info inf_sexo'.$reg['sexo'].'">'.$reg['fecha'].'</span><span class="numero"><small>Número</small><big>'.$reg['id'].'</big></span><span class="clear" style="display:block;"></span></div><p class="secr_texto">'.htmlspecialchars($secreto).'</p><div class="secr_pie"><div id="rating_570491" class="rating"><div id=star1 class="star"><a style="width: 100%" href="#1">1</a></div><div id=star2 class="star"><a style="width: 100%" href="#2">2</a></div><div id=star3 class="star"><a style="width: 100%" href="#3">3</a></div><div id=star4 class="star"><a style="width: 100%" href="#4">4</a></div><div id=star5 class="star"><a style="width: 100%" href="#5">5</a></div></div><div style="float:right;"><p id="votados_570491" class="votados"><strong>4.7</strong> [88 votos]</p></div><div style="height:12px; margin-top:12px;"><img id="rating_submit_ajax_570491" src="images/ajax_loader.gif" width=16 height=11 style="display:none;" /></div></div></div>
<div class="separator10" style="clear:both;"> </div>';
?>