erreur non comprise dans script
j'ai le script suivant et il m'annonce des erreurs ( toujours la meme ). Pouvez vous m'expliquer ? merci
ce sont aux lignes 66, 73, 86....
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="fade.js" type="text/javascript">
fade( document.getElementById('dali'), 1 );
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DemandeDeRenseignement</title>
<style type="text/css">
<!--
@import url("site internet boulevard du littoral/style/style-site-css article demande de renseignements.css");
a:link {
color: #999;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: none;
}
a:visited {
color: #999;
text-decoration: none;
}
a:active {
color: #999;
text-decoration: none;
}
-->
</style>
</head>
<body onload="startPix()">
<div id="page">
<div id="scpage">
<div id="bando">
<ul>
<li><a href="formcgi.php"><span style="color: #FC0;">demande de renseignement</span></a></li>
<li><a href="Contact.html">contact</a></li>
<li><a href="Article de presse.html">article de presse</a></li>
<li><a href="Mission.html">missions</a></li>
<li><a href="index.html">Accueil </a></li>
<li><img src="site internet boulevard du littoral/images/logo.jpg" width="314" height="75" alt="logo" /></li>
</ul>
</div>
<div id="centregauche">
<p> </p></div>
<div id="centredroite">
<p> </p>
<form action="" method="POST">
<input type="hidden" name="try" value="send">
<input type="hidden" name="nobotv" value="<?php echo $nobot; ?>">
<form method="post"
action="http://boulevardulittoral/cgi-bin/cgiemail/emailformcgi.txt">
<table border="0" bgcolor="" cellspacing="5">
<tr>
<?php
if ($erreur_mairie) {
echo($icone);
}
?>
<td>Société/ Mairie*</td>
<td><input type="text" size="30" name="_mairie" /></td>
<?php
if ($erreur_nom) {
echo($icone);
}
?>
<td>Nom, prénom*</td>
<td><input type="text" size="30" name="nom" /></td>
<td>Téléphone</td>
<td><input type="text" size="30" name="tel" /></td>
</tr>
<tr>
<td>Addresse</td>
<td><input type="text" size="30" name="adre" /></td>
<?php
if ($erreur_ville) {
echo($icone);
}
?>
<td>Ville*</td>
<td><input type="text" size="30" name="ville" /></td>
<?php
if ($erreur_cp) {
echo($icone);
}
?>
<td>Code postal*</td>
<td><input type="text" size="30" name="cp" /></td>
</tr>
<td> </td>
<td> </td>
<tr>
<td valign="top">Votre message</td>
<td><textarea name="comm" rows="6" cols="25"></textarea></td>
<td> </td>
<td><input type="checkbox" name="nobotc" value="<?php echo md5($nobot); ?>" />
Je confirme vouloir envoyer ces informations
<div style="position: absolute; visibility: hidden; left: -5000; top : -5000"> <br />
<input type="checkbox" name="nobots" value="<?php echo time(); ?>" />
I'm a Stupid Spam-Robot </div></td>
<?php
if ($erreur_mail) {
echo($icone);
}
?>
<td>Votre E.mail*</td>
<td><input type="text" size="30" name="mail" /></td> </tr>
<tr>
<td> </td>
<td><input type="submit" value="Envoyer" />
<font face="arial" size="1"> <a href="http://web.mit.edu/wwwdev/cgiemail/">CGI HELP</a></font></td>
<td>
<td/><td><td/>
</table>
</form>
<p>Les cases précédées d'un * sont obligatoires </p>
<p> texte donnant les infos légales </p>
<td> </td>
</div>
</div>
<p> </p>
</div>
</body>
</html> |