mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
5 lines
162 B
PHP
5 lines
162 B
PHP
<?php
|
|
$name = sanitizeInput($_POST['name']);
|
|
$type = sanitizeInput($_POST['type']);
|
|
$color = preg_replace("/[^0-9a-zA-Z-]/", "", sanitizeInput($_POST['color']));
|