bonsoir,

j'ai un problème de programmation j'ai mon formulaire en html et une requête api pour création des données mais il en veux pas du tous il n'envoie pas mon formulaire je débute en api et php pouvez vous me dire quelle est mon erreur svp

merci d'avance

Code : 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<html>		
				<table width="596" border="0">
		  <tr>
			<td><div align="center">Nom : <br />
				<input type="text" name="name" />
				<br />
			</div></td>
			<td><div align="center">Prénom : <br />
				<input type="text" name="firstname" />
				<br />
			</div></td>
		  </tr>
		  <tr>
			<td><div align="center">mot de passe : <br />
				<input type="text" name="password" />
			</div></td>
			<td><div align="center">e-mail : <br />
				<input type="text" name="email" />
			</div></td>
		  </tr>
		  <tr>
			<td><div align="center">phone : <br />
			  international format, ex: +33.899701761<br />
		  <input type="text" name="phone" />
			</div></td>
			<td><p align="center">fax : <br />
			  international format, ex: +33.899701761 <br />
		  <input type="text" name="fax" />
		  <br />
			  </p>    </td>
		  </tr>
		  <tr>
			<td><div align="center">adresse : <br />
				<input type="text" name="address" />
				<br />
			</div></td>
			<td><div align="center">      ville : <br />
		  <input type="text" name="city" />
		  <br />
			</div></td>
		  </tr>
		  <tr>
			<td><div align="center">Département<br />
				<input type="text" name="area" />
				<br />
			</div></td>
			<td><div align="center">code postal : <br />
				<input type="text" name="zip" />
				<br />
			</div></td>
		  </tr>
		  <tr>
			<td><div align="center">      pays : <br />
		  <!--le code pays du contact (be|fr|pl|es|lu|ch|de|...)<br /><input type="text" name="country" />-->
		  <select name="country" style="font-size: 13px; font-weight: bold; margin-right: 10px; padding: 1px; color: #333;">
			<option value='fr' selected="selected">france</option>
			<option value='be'>belgique</option>
			<option value='es'>espagne</option>
			<option value='lu'>luxembourg</option>
			<option value='ch'>suisse</option>
			<option value='de'>alemagne</option>
			<option value='en'>alemagne</option>
			</select>
		  <br />
			</div></td>
			<td><div align="center">langue : <br />
				<!--la langue du contact (fr|en|pl|es|de)<br /><input type="text" name="language" />-->
				<select name="language" style="font-size: 13px; font-weight: bold; margin-right: 10px; padding: 1px; color: #333;">
				  <option value='fr' selected="selected">français</option>
				  <option value='en'>anglais</option>
				  <option value='es'>espagnol</option>
				  <option value='lu'>luxembourgois</option>
				  <option value='ch'>suisse</option>
				  <option value='de'>alemand</option>
				  </select>
			</div></td>
		  </tr>
		  <tr>
			<td><div align="center">forme légal : <br />
				<!--a forme légale du contact (corporation|individual|association|other)<br /><input type="text" name="legalform" />-->
				<select name="legalform" style="font-size: 13px; font-weight: bold; margin-right: 10px; padding: 1px; color: #333;">
				  <option value='individual' selected="selected">individuel</option>
				  <option value='corporation'>entreprise</option>
				  <option value='association'>association</option>
				  <option value='other'>autre</option>
				  </select>
				<br />
			</div></td>
			<td><div align="center"></div></td>
		  </tr>
		  <tr>
			<td colspan="2"><div align="center">
			  <p><span class="Style1">Si vous etes une entreprise ne cliquez pas sur ce bouton envoyer et continué le formulaire</span><br /><br />
				<input type="submit" value="Envoyer" />
				<br />
			  </p>
			  </div></td>
		  </tr>
		</table>
			<table width="596" border="0">
			  <tr>
				<td width="286"><div align="center">Nom de l'entreprise : <br />
					<input type="text" name="organisation" />
				</div></td>
				<td width="291"><div align="center">Nom du dirigant : <br />
					<input type="text" name="legalName" />
				</div></td>
			  </tr>
			  <tr>
				<td><div align="center">      n° siret : <br />
			  <input type="text" name="legalNumber" />
				</div></td>
				<td><div align="center">      n° tva  intracommunautaire : <br />
			  <input type="text" name="vat" />
				</div></td>
			  </tr>
			  <tr>
				<td colspan="2"><div align="center">
				  <input type="submit" value="Envoyer" />
				</div></td>
			  </tr>
			</table>
 
</p>
 
 
 
</form>
 
 
<br /><br />
<?
$name = $_POST['name']; 
$firstname = $_POST['firstname'];
$password = $_POST['password'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$fax = $_POST['fax'];
$address = $_POST['address'];
$city = $_POST['city'];
$area = $_POST['area'];
$zip = $_POST['zip'];
$country = $_POST['country'];
$language = $_POST['language'];
$legalform = $_POST['legalform'];
$organisation = $_POST['organisation'];
$legalName = $_POST['legalName'];
$legalNumber = $_POST['legalNumber'];
$vat = $_POST['vat'];
 
 
 
try {
 
 $soap = new SoapClient("https://www.ovh.com/soapi/soapi-re-1.11.wsdl");
 
 
 
 //login
 
 $session = $soap->login("XXXXXXX", "XXXXXXXXXX","fr", false);
 
 echo "login successfull\n";
 //nicCreate
 
 $result = $soap->nicCreate($session, "$name", "$firstname", "$password", "$email", "$phone", "$fax", "$address", "$city", "$area", "$zip", 
 
 "$country", "$language", true, "$legalform", "$organisation", "$legalName", "$legalNumber", "$vat");
 
 echo "Votre Identifiant OVH est : \n";
 
 
 ?>
 <b>
 <?
 
	print_r($result); // your code here ...
 
?>
 
</b>
 
<?
 
 //logout
 
 $soap->logout($session);
 
 echo "logout successfull\n";
 
 
 
} catch(SoapFault $fault) {
 
# echo $fault;
 
}
 
 
 
?>
 
</html>