WRInaute impliqué
Bonjour,
Actuellement chez Online en hébergement, je compte déménager.
Par contre actuellement j'ai un formulaire en php qui fonctionne très bien avec les fonction d'online.
Quelqu'un pourrait il m'aider à le rendre compatible pour php5.
Ci-joint le code :
<?php
$dest="mail@domaine.fr";
$referer= getenv("HTTP_REFERER");
$ok=1;
if($ok){
$sujet= "Demande d'information de ".$referer;
$body.="Page d'origine : $referer\n";
$body.="\n*** Demande d'information Contact - Coordonnees et message ***\n";
if(count($HTTP_POST_VARS)){
while (list($key, $val) = each($HTTP_POST_VARS)){
$body.="$key : $val\n";
}
}
if(count($HTTP_GET_VARS)){
while (list($key, $val) = each($HTTP_GET_VARS)){
$body.="$key : $val\n";
}
}
$body.="*************************\n";
if(!email("webmaster",$dest,$sujet,$body)){
print "erreur envoi email <br>";
}
// affiche le html qui suit si succes
?>
Merci d'avance
PS : chez online la fonction mail est remplacé par email. Faut il simplement changé la fontiion email par mail ??
Actuellement chez Online en hébergement, je compte déménager.
Par contre actuellement j'ai un formulaire en php qui fonctionne très bien avec les fonction d'online.
Quelqu'un pourrait il m'aider à le rendre compatible pour php5.
Ci-joint le code :
<?php
$dest="mail@domaine.fr";
$referer= getenv("HTTP_REFERER");
$ok=1;
if($ok){
$sujet= "Demande d'information de ".$referer;
$body.="Page d'origine : $referer\n";
$body.="\n*** Demande d'information Contact - Coordonnees et message ***\n";
if(count($HTTP_POST_VARS)){
while (list($key, $val) = each($HTTP_POST_VARS)){
$body.="$key : $val\n";
}
}
if(count($HTTP_GET_VARS)){
while (list($key, $val) = each($HTTP_GET_VARS)){
$body.="$key : $val\n";
}
}
$body.="*************************\n";
if(!email("webmaster",$dest,$sujet,$body)){
print "erreur envoi email <br>";
}
// affiche le html qui suit si succes
?>
Merci d'avance
PS : chez online la fonction mail est remplacé par email. Faut il simplement changé la fontiion email par mail ??