Exemple #1
0
$text = GET('text');
$close = false;
if (GET('save') == "1") {
    ossim_valid($text, OSS_ALPHA, OSS_SCORE, OSS_DOT, OSS_SPACE, OSS_PUNC_EXT, OSS_NULLABLE, '-', 'illegal:' . _("Text"));
    if (ossim_error()) {
        die(ossim_error());
    }
    if ($pci) {
        PCI::save_text($conn, $table, $ref, $text);
    } else {
        ISO27001::save_text($conn, $table, $ref, $text);
    }
    $close = true;
}
if ($pci) {
    $text = PCI::get_text($conn, $table, $ref);
} else {
    $text = ISO27001::get_text($conn, $table, $ref);
}
?>

<html>
<head>
  <title> <?php 
echo gettext("OSSIM Framework");
?>
 - <?php 
echo _("Compliance");
?>
 </title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>