<?php
include "core/autoload.php";
include "core/app/model/EventData.php";

$Account = new EventData();
$Account->ip = $_SERVER['REMOTE_ADDR'];
$Account->description = "";
$Account->user_id = "1";
$Account->type_id = "1";
$s = $Account->add();
?>