mirror of
https://github.com/itflow-org/itflow
synced 2026-07-23 08:50:42 +00:00
7 lines
188 B
PHP
7 lines
188 B
PHP
<?php
|
|
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
|
|
|
$name = escapeSql($_POST['name']);
|
|
$type = escapeSql($_POST['type']);
|
|
$color = escapeSql($_POST['color']);
|