mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
7 lines
200 B
PHP
7 lines
200 B
PHP
<?php
|
|
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
|
|
|
$name = sanitizeInput($_POST['name']);
|
|
$type = sanitizeInput($_POST['type']);
|
|
$color = sanitizeInput($_POST['color']);
|