mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
- Ongoing deduplication/conversion of post.php to use re-usable 'models' for input - Also converting file upload checks to use a function instead
6 lines
274 B
PHP
6 lines
274 B
PHP
<?php
|
|
$name = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['name'])));
|
|
$type = intval($_POST['type']);
|
|
$color = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['color'])));
|
|
$icon = trim(strip_tags(mysqli_real_escape_string($mysqli, $_POST['icon'])));
|