MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
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);

    
}

?>