KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/emhunter/distribution/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/emhunter/distribution/sample-html-simple.php
<?php session_start(); ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>

<title>Contact Form - Sample</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="description" content="">
<meta name="keywords"    content="">
<link rel="stylesheet" type="text/css" href="contact-form/style-basic.css">
<link rel="stylesheet" type="text/css" href="contact-form/style-simple.css">

</head>
<body>

<?php

$contact_form_fields = array(
  array('name'    => 'Department:',
        'type'    => 'department',
        'require' => 1,
        'default' => '-',
        'items'   => array('[email protected]' => 'Sales',
                           '[email protected]' => 'Technical support')),
  array('name'    => 'Name:',
        'type'    => 'name',
        'require' => 1),
  array('name'    => 'E-mail:',
        'type'    => 'email',
        'require' => 1),
  array('name'    => 'Tel/fax:',
        'type'    => 'input',
        'require' => 1),
  array('name'    => 'Country:',
        'type'    => 'select',
        'require' => 1,
        'default' => '-',
        'items'   => array('Germany',
                           'United Kingdom',
                           'USA')),
  array('name'    => 'Subject:',
        'type'    => 'subject',
        'require' => 1),
  array('name'    => 'Message:',
        'type'    => 'textarea',
        'require' => 1),
  array('name'    => 'Attachment:',
        'type'    => 'upload',
        'require' => 0,
        'maxsize' => 128*1024),
  array('name'    => 'Turing number:',
        'type'    => 'turing',
        'require' => 1,
        'url'     => 'contact-form/image.php',
        'prompt'  => 'Enter the number displayed above'),
  array('name'    => '',
        'type'    => 'checkbox',
        'require' => 1,
        'prompt'  => 'I confirm that I have read FAQ before submitting question'));

$contact_form_graph           = false;
$contact_form_xhtml           = false;

$contact_form_email           = "[email protected]";
$contact_form_encoding        = "utf-8";
$contact_form_default_subject = "Default subject";
$contact_form_message_prefix  = "Sent from contact form\r\n==============================\r\n\r\n";

include_once "contact-form/contact-form.php";

?>

</body>
</html>

Anon7 - 2021