Bonjour,
je fais un formulaire simple (sans vérifs), mais visiblement ma page html ne va pas lire mon fichier php.
J'ai une erreur 403 quand je valide mon formulaire...
Pourtant les fichiers sont bien dans le même répertoire sur le serveur. J'ai fait un essai d'adressage direct, mais idem.
Ou est-ce que j'ai fait une bourde ?
Voici les codes :
MERCI A CEUX QUI POURRONT M'AIDER !Code:HTML : <form method=POST action=formmail.php > <br style="line-height:4px "> <img alt="" src="spacer.gif" width="200px" height="1px">Nom: <input style="width:251px; height:22px " type="text" name=nom> <img alt="" src="spacer.gif" width="30px" height="1px">Prénom: <input style="width:220px; height:22px " type="text" name=prenom> <br style="line-height:4px "> <img alt="" src="spacer.gif" width="200px" height="1px">Adresse 1: <input style="width:220px; height:22px " type="text" name=adressa> <img alt="" src="spacer.gif" width="15px" height="1px">Adresse 2: <input style="width:220px; height:22px " type="text" name=adressb> <br style="line-height:4px "> <img alt="" src="spacer.gif" width="200px" height="1px">Code postal: <input style="width:208px; height:22px " type="text" name=codep> <img alt="" src="spacer.gif" width="50px" height="1px">Ville: <input style="width:220px; height:22px " type="text" name=ville> <br style="line-height:4px "> <img alt="" src="spacer.gif" width="200px" height="1px">Téléphone: <input style="width:219px; height:22px " type="text" name=phone> <img alt="" src="spacer.gif" width="44px" height="1px">Email: <input style="width:220px; height:22px " type="text" name=mail> <br /> <br /> <img alt="" src="spacer.gif" width="200px" height="1px"> <textarea name=mess cols="120" rows="5" style="width:600px; height:102px; overflow:auto ">Message:</textarea> <br> <br style="line-height:6px "> <img alt="" src="spacer.gif" width="690px" height="1px"><b> <input type=reset value="RAZ"> </b><img alt="" src="spacer.gif" width="16px" height="1px"><b> <input type=submit value="Envoi"> </form> PHP: <?php $TO = "mail@toto.com"; $h = "From: contact site" . $TO; $message = ""; while (list($key, $val) = each($HTTP_POST_VARS)) { $message .= "$key : $val\n"; } $h .= "MIME-version: 1.0<\n>"; $h .= "Content-type: text/html; charset= iso-8859-1\n"; mail($TO, $subject, $message, $h); Header("Location: http://www.site"); ?>
-----