mirror of https://github.com/itflow-org/itflow
13 lines
450 B
PHP
13 lines
450 B
PHP
<?php
|
|
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
|
|
|
$name = preg_replace("(^https?://)", "", sanitizeInput($_POST['name']));
|
|
$description = sanitizeInput($_POST['description']);
|
|
$registrar = intval($_POST['registrar']);
|
|
$dnshost = intval($_POST['dnshost']);
|
|
$webhost = intval($_POST['webhost']);
|
|
$mailhost = intval($_POST['mailhost']);
|
|
$expire = sanitizeInput($_POST['expire']);
|
|
$notes = sanitizeInput($_POST['notes']);
|
|
|