What i posted shouldn’t have interferred with that unless you put it in the wrong place.
[php]
<?php
session_start();
$where_form_is="http://".$_SERVER['SERVER_NAME'].strrev(strstr(strrev($_SERVER['PHP_SELF']),"/"));
if( ($_SESSION['security_code']==$_POST['security_code']) && (!empty($_POST['security_code'])) ) {
$headers = "From:
[email protected]\r\n"; //change the from email to match your domain
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$message = "Registration Form:
Minecraft Username: " . $_POST['field_1'] . "
Valid Email Address: " . $_POST['field_2'] . "
When were you born?: " . $_POST['field_3'] . "
Which Country are you from?: " . $_POST['field_4'] . "
How did you find out about us?: " . $_POST['field_5'] . "
What do you like to do in Minecraft the most?: " . $_POST['field_6'] . "
What is the #1 rule of CaveExplorer.MC?: " . $_POST['field_7'] . "
What must you do after raiding someones farm? : " . $_POST['field_8'] . "
Which command are you NEVER permitted to while raiding someone elses home/base/structure?: " . $_POST['field_9'] . "
If you have an issue, who do you speak to? : " . $_POST['field_10'] . "
What are the four (4) container blocks? : " . $_POST['field_11'] . "
Which four (4) things should you never ask for on CaveExplorer.MC? : " . $_POST['field_12'] . "
What does Rule #5 mean? : " . $_POST['field_13'] . "
What are the ten (10) raidable blocks? : " . $_POST['field_14'] . "
What is pillaring and why is it bad? : " . $_POST['field_15'] . "
If you damage someones house, either on purpose or accidentally, what must you do before leaving that house?: " . $_POST['field_16'] . "
powered by phpFormGenerator.");
mail("
[email protected]","Registration Form", $message, $headers);
include("confirm.html");
} else {
echo "Invalid Captcha String.";
}
?>[/php]