Código PHP:
<?php
$contra=$_POST['contra'];
$mensaje=$_POST['mensaje'];
$nombre="variable.txt";
$texto=file($nombre);
$fecha=date("Y-m-d");
$hora=time();
$conex=mysql_connect('localhost','webmaster','piramide');
$bada=mysql_select_db("mac");
$senten="SELECT usuario, pass FROM registro WHERE pass='$contra'";
$resul=mysql_query($senten);
$arr=mysql_fetch_array($resul);
if ($arr[1]==$contra){
$senten2="INSERT INTO posteos(idtema,usuario,posteo,fecha,hora) VALUES ('$texto[0]','$arr[0]','$mensaje','$fecha','$hora')";
mysql_query($senten2);
echo "<HTML>";
echo "<HEAD>";
echo "<script language='javascript'>";
echo "function volver(){";
echo "window.location.href='tema.php';";
echo "}";
echo "</script>";
echo "</head>";
echo "<body onload='volver()'>";
echo "</body>";
echo "</html>";
}
else{
echo "<HTML>";
echo "<HEAD>";
echo "</head>";
echo "<body bgcolor='black' text='white'>";
echo "<h1><center>CONTRASE� INCORRECTA</H1>";
echo "</body>";
echo "</html>";
}
?>
Muchas Gracias