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']));
|