File: /home/asjudine/public_html/chattesttt/post.php
<?php
session_start();
require_once('Conectarse.php');
//$conn = Conectarse();
$time = time();
ini_set('date.timezone', 'America/Bogota');
$hora_auto = date("H:i:s", $time);
$segundos = 5;
header("Refresh:" . $segundos);
if (isset($_SESSION['name'])) {
$fecha_hoy = date('Y-m-d');
$text = $_POST['text'];
$fp = fopen("logs/log$fecha_hoy.html", 'a');
fwrite($fp, "<div class='msgln'>(" . date("d-m-y, g:i a") . ") <b>" . $_SESSION['name'] . "</b>: " . stripslashes(htmlspecialchars($text)) . "<br></div>");
fclose($fp);
}
?>