31 lines
963 B
PHP
31 lines
963 B
PHP
<?php include "../top.inc.php"; ?>
|
|
|
|
<form method="post">
|
|
<?php require "../inc/form/form.ns.inc.php"; ?>
|
|
<br>
|
|
<label for="txt">Texte</label>
|
|
<br>
|
|
<input id="txt" minlenght="5" maxlength="8192" pattern="^[a-zA-Z0-9 =:!%$+/\()[\]_-]{5,8192}$" placeholder="Du texte..." name="txt" type="text">
|
|
<br>
|
|
<input value="Valider" type="submit">
|
|
</form>
|
|
|
|
<?php
|
|
if (nsCommonRequirements()
|
|
AND isset($_POST['txt'])
|
|
) {
|
|
|
|
$values = nsParseCommonRequirements();
|
|
|
|
if (!(preg_match("/^[a-zA-Z0-9 =:!%$+\/\()[\]_-]{5,8192}$/", $_POST['txt'])))
|
|
exit("ERROR : Wrong caracter or wrong caracter quantity");
|
|
|
|
exec(KNOTC_PATH . " zone-begin " . $_POST['zone']);
|
|
exec(KNOTC_PATH . " zone-" . $values['action'] . "set " . $_POST['zone'] . " " . $values['domain'] . " " . $values['ttl'] . ' IN TXT \"' . $_POST['txt'] . '\"');
|
|
exec(KNOTC_PATH . " zone-commit " . $_POST['zone']);
|
|
echo "Enregistrement ajouté";
|
|
}
|
|
|
|
?>
|
|
|
|
<?php include "../bottom.inc.php"; ?>
|