Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Website Hacking. I Have A Question Re: Website Hacking. I Have A Question

#143244
CodeGraphics
Participant

Here is the script of my thank-you.php. I hope sharing this here is not risky.

if(isset($_POST)){
$to=”[email protected]”;
$subject=’Online Contact’;
$name=$_POST;
$email=$_POST;
$message=$_POST;
$body=”Name: $namen Email: $email n Message: $message”;
include (‘thanks.php’);
mail($to,$subject,$body);
}
else {
include (‘index.php’);
}
?>