Hits: 5944

 

Absolute path found. Loading as relative.

 

List

Try: ca/tecreations/ViewFile.php -- Online


<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/tec_SiteRoot.php";

global $db;

if (isset($_REQUEST['post']) && !empty($_REQUEST['post'])) {
    if (isTim()) {
        if (isset($_REQUEST['tims']) && !empty($_REQUEST['tims'])) {
            $text = $_REQUEST['tims'];
            $sql = "INSERT INTO todays_chat (poster,text) VALUES('tim\'s_NETWORK','" . htmlentities($text,ENT_QUOTES|ENT_HTML401) ."')";
            $db->issue($sql);
            header("Location: https://tecreations.ca/"); 
        }
    } 
    if (isset($_REQUEST['poster']) && !empty($_REQUEST['poster']) &&
        isset($_REQUEST['text']) && !empty($_REQUEST['text'])
    ) {
        $poster = $_REQUEST['poster'];
        $text = $_REQUEST['text'];
        $sql = "INSERT INTO todays_chat (poster,text) VALUES('$poster','" . htmlentities($text,ENT_QUOTES|ENT_HTML401) ."')";
        $db->issue($sql);
            header("Location: https://tecreations.ca/");
    }
}