par
wallygator2004 » 21 mars 2013, 17:01
<?php
$cryptinstall="./cryptographp.fct.php";
include $cryptinstall;
?>
<html>
<?php
if (chk_crypt($_POST['code']))
{
$TO = "[email protected]";
$h = "From: " . $TO;
$subject = $_POST["subject"];
$message = "";
while (list($key, $val) = each($HTTP_POST_VARS)) {
$message .= "$key : $val\n";
}
mail($TO, $subject, $message, $h);
Header("Location: http://www.pixware.be/merci.html");
}
else { echo "erreur"; }
?>
</html>
[php]<?php
$cryptinstall="./cryptographp.fct.php";
include $cryptinstall;
?>
<html>
<?php
if (chk_crypt($_POST['code']))
{
$TO = "
[email protected]";
$h = "From: " . $TO;
$subject = $_POST["subject"];
$message = "";
while (list($key, $val) = each($HTTP_POST_VARS)) {
$message .= "$key : $val\n";
}
mail($TO, $subject, $message, $h);
Header("Location: http://www.pixware.be/merci.html");
}
else { echo "erreur"; }
?>
</html>
[/php]