Exemplo n.º 1
0
/************************************************************************/
/* SFORM Extender for NPDS V Forum .                                    */
/* ===========================                                          */
/*                                                                      */
/* P. Brunier 2002 - 2011                                               */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/
/* Dont modify this file is you dont know what you make                 */
/************************************************************************/
$sform_path = "modules/sform/";
include_once $sform_path . "sform.php";
global $m;
$m = new form_handler();
//********************
$m->add_form_title("Bugs_Report");
$m->add_form_method("post");
$m->add_form_check("false");
$m->add_mess(" * désigne un champ obligatoire ");
$m->add_submit_value("submitS");
$m->add_url("newtopic.php");
/************************************************/
include $sform_path . "forum/{$formulaire}";
/************************************************/
if (!$submitS) {
    echo $m->print_form("class=\"ligna\"");
} else {
    $message = $m->aff_response("class=\"ligna\"", "not_echo", "");
}
Exemplo n.º 2
0
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/
/* Dont modify this file is you dont know what you make                 */
/************************************************************************/
global $ModPath, $ModStart;
$sform_path = "modules/sform/";
include_once $sform_path . "sform.php";
global $m;
$m = new form_handler();
//********************
$m->add_form_title("CONTACT");
$m->add_form_method("post");
$m->add_form_check("true");
$m->add_mess(utf8_java("[french] * désigne un champ obligatoire [/french][english] * indicate an obligatory field [/english]"));
$m->add_submit_value("ok");
$m->add_url("modules.php");
$m->add_field("ModStart", "", $ModStart, 'hidden', false);
$m->add_field("ModPath", "", $ModPath, 'hidden', false);
/************************************************/
include $sform_path . "contact/formulaire.php";
/************************************************/
// Manage the <form>
switch ($ok) {
    case 'Soumettre':
    case 'Submit':
        if (!$sformret) {
            $m->make_response();
            //anti_spambot
            if (!R_spambot($asb_question, $asb_reponse, $message)) {
Exemplo n.º 3
0
/************************************************************************/
/* SFORM Extender for Dune comments.                                    */
/* ===========================                                          */
/*                                                                      */
/* P. Brunier 2002 - 2009                                               */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/
/* Dont modify this file is you dont know what you make                 */
/************************************************************************/
include_once "modules/sform/sform.php";
global $m;
$m = new form_handler();
//********************
$m->add_form_title("coolsus");
$m->add_form_method("post");
$m->add_form_check("false");
$m->add_mess("[french]* désigne un champ obligatoire[/french][english]* mandatory field[/english]");
$m->add_submit_value("submitS");
$m->add_url("modules.php");
/************************************************/
include "modules/comments/{$formulaire}";
/************************************************/
if (!isset($GLOBALS["submitS"])) {
    echo aff_langue($m->print_form("class=\"ligna\""));
} else {
    $message = aff_langue($m->aff_response("class=\"ligna\"", "not_echo", ""));
}