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