Esempio n. 1
0
<?php

require_once '../php/User.php';
require_once '../php/Vehicle.php';
require_once '../php/Comment.php';
require_once '../php/Data.php';
require_once '../php/IO.php';
$usercheck = filter_input(INPUT_GET, "usercheck", FILTER_SANITIZE_SPECIAL_CHARS);
$url = "?usercheck=" . $usercheck;
$isPost = filter_input(INPUT_SERVER, 'REQUEST_METHOD') == 'POST';
$s = 1;
if ($isPost && $url) {
    $rules = array('comment_field' => FILTER_SANITIZE_SPECIAL_CHARS, 'to' => FILTER_SANITIZE_SPECIAL_CHARS, 'commentator' => FILTER_SANITIZE_SPECIAL_CHARS);
    $sent = filter_input_array(INPUT_POST, $rules);
    IO::comment($sent);
}
if (!isset($usercheck)) {
    //user that is being checked
    header("Location: users.php");
} else {
    $uinfo = User::getUser($usercheck);
    $vehicleinfo = Vehicle::getVehicleName($uinfo["vehicle_idvehicle"]);
    $vehicle = $vehicleinfo["vehiclename"];
    $all_comments = Comment::getAllComments($uinfo["iduser"]);
    $chartd = IO::chart($uinfo);
}
$cookie = filter_input(INPUT_COOKIE, "user", FILTER_SANITIZE_SPECIAL_CHARS);
if (isset($cookie)) {
    $s = 0;
    $username = $cookie;
    ?>