• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

ThE LongesT ThreaD EveR

it's not fair, im boiling in here the temps nearly 45 degrees but the fan has to be pointed at the back of my computer so that the power unit wont overheat. NOT FAIR
 
sEp said:
it's not fair, im boiling in here the temps nearly 45 degrees but the fan has to be pointed at the back of my computer so that the power unit wont overheat. NOT FAIR

Only 45 lol, not that HOT, ITS RED HOT :eek2: .
 
sEp said:
Dude! You Signed Up So That You Can Spam? Good On Ya!

Can we stop with the spam :shame: & just eat it insted of all the slaps, << now that is the spam :confused4
 
Will sameone please tell me whats rong with my feedback script..
When i test it it doesnt send an email to me?:( PLEASE HELP!
HTML:
<?php


// You must edit the line below
$feedback_email = "mgg888@gmail.com";
// Change for email subject
$subject = "GeioStudio Feedback";
// Response to incomplete fields
$empty_fields = 'Please complete all the fields in the form.<br><br><a href="javascript:history.go(-1)">[Go Back]</a>';
// Message sent notification
$thankyou = "Thankyou. Your message has been sent.";

////////////////////////////////////////////////////////////////
///////////// Do not need to edit below this point /////////////
////////////////////////////////////////////////////////////////

$name = stripslashes($_POST['Name']);
$email = stripslashes($_POST['Email']);
$message = stripslashes($_POST['Message']);

if (!isset($_POST['Name'])) {

?>

<h1>Feedback - this form is still a beta</h1>
    <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">

    <p>Name:<br />
    <input name="Name" type="text" id="Name" size="40" />
    </p>

    <p>Email:<br />
    <input name="Email" type="text" id="Email" size="40" />
    </p>

    <p>Message:<br />
      <textarea name="Message" cols="31" rows="4" id="Message"></textarea>
  </p>

    <p>
    <input type="submit" value="Send" />
    <input name="Reset" type="reset" value="Reset" />
    </p>

</form>
<br><br>


<?php

}

elseif (empty($name) || empty($email) || empty($message)) {

    echo $empty_fields;

}

else {

    $ref = $_SERVER['HTTP_REFERER'];
    $url = "http://".$_SERVER['HTTP_HOST'].$_SERVER["REQUEST_URI"];
    if ($ref != $url) {
        echo "Access Denied from external pages!";
        exit;
    }
    mail($feedback_email, $subject, $message, "From: $name <$email>");
    echo $thankyou;
    
}

?>
 
I am so exhausted right now. Two long days of a busy weekend working...this new job is great, but its killing me.
 
Back
Top