Hello
ça y est! Mon site est en ligne.

Par contre le formulaire de contact cgi ne marche pas!!!!

J'ai pourtant un fournisseur d'accès (sivit) qui autorise ce type de formulaire.
avec un repertoire CGI-BIN

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
\cgi-bin\
\public-htm\
Mon site est donc sur le serveur dans le repertoire \public-htm\

Voici mon formulaire:



Code html : Sélectionner tout - Visualiser dans une fenêtre à part
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
<form action="/cgi-bin/send_form_mail.php.cgi" method="post" enctype="multipart/form-data" name="RESERVATION" id="RESERVATION">
    <table width="100%" border="0">
      <tr>
        <td><label>
           <input type="checkbox" name="Bapt&ecirc;me Tandem" id="Bapt&ecirc;me Tandem">
        Baptême Tandem</label></td>
      </tr>
      <tr>
        <td><label>
          <input type="checkbox" name="Formation PAC" id="Formation PAC">
        Formation PAC</label></td>
      </tr>
      <tr>
        <td><label>
          <input type="checkbox" name="Formation Traditionnelle" id="Formation Traditionnelle">
        Formation Traditionnelle</label></td>
      </tr>
      <tr>
        <td><label>
          <input type="checkbox" name="Saut d'initiation PAC" id="Saut d'initiation PAC">
        Saut d'initiation PAC</label></td>
      </tr>
      <tr>
        <td><label>Nom 
            <input name="Nom2" type="text" id="Nom2" tabindex="2" size="40">
        </label></td>
      </tr>
      <tr>
        <td><label>Adresse
            <input name="TO" type="hidden" id="TO" value="info@verticalwind.fr">
            <textarea name="Adresse" id="Adresse" cols="45" rows="5"></textarea>
        </label></td>
      </tr>
      <tr>
        <td><label>Tél.
          <input name="T&eacute;l&eacute;phone" type="text" id="T&eacute;l&eacute;phone" size="40">
        </label></td>
      </tr>
      <tr>
        <td><label>e.mail
          <input name="FROM" type="text" id="FROM" size="37">
        </label></td>
      </tr>
      <tr>
        <td><label>Prix
            <input name="Prix" type="text" id="Prix" size="40">
        </label></td>
      </tr>
      <tr>
        <td><input type="submit" name="Submit2" id="Submit2" value="Envoyer">
        <input name="GOTOURL" type="hidden" id="GOTOURL" value="http://www.verticalwind.fr/Ok_reservation.htm"></td>
      </tr>
    </table>
  </form>
</div>
<div id="apDiv3">Je r&eacute;serve un saut !</div>
<div id="apDiv2">
  <form action="/cgi-bin/send_form-mail.php.cgi" method="post" enctype="multipart/form-data" name="Renseignement" id="Renseignement">
    <table width="100%" border="0">
      <tr>
        <td>Nom</td>
        <td><label>
          <input name="Nom" type="text" id="Nom" size="35">
        </label></td>
      </tr>
      <tr>
        <td>Pr&eacute;nom</td>
        <td><label>
          <input name="Pr&eacute;nom" type="text" id="Pr&eacute;nom" size="35">
        </label></td>
      </tr>
      <tr>
        <td>Adresse e.mail</td>
        <td><label>
          <input name="FROM" type="text" id="FROM" size="35">
        </label></td>
      </tr>
      <tr>
        <td>T&eacute;l&eacute;phone</td>
        <td><label>
          <input name="T&eacute;l" type="text" id="T&eacute;l" size="35">
        </label></td>
      </tr>
      <tr>
        <td>Message</td>
        <td><label>
          <textarea name="Message" id="Message" cols="33" rows="5"></textarea>
        </label></td>
      </tr>
      <tr>
        <td><input name="TO" type="hidden" id="TO" value="info@verticalwind.fr"></td>
        <td><label>
          <input type="submit" name="Submit" id="Submit" value="Envoyer">
          <input name="GOTOURL" type="hidden" id="GOTOURL" value="http://www.verticalwind.fr/Merci_contact.htm">
        </label></td>
      </tr>
    </table>
  </form>


Merci