Bonjour, j'ai trouvé un script php d'un formulaire d'upload de fichier que je voudrais modifier pour qu'il s'adapte à mon site.
voila l'original avec quelques modifications que j'ai réussi à faire, mais j'ai besoin d'une personne compétente pour aller plus loin
Nom : 593524formualire1.jpg
Affichages : 289
Taille : 62,4 Ko

et voila ce que j'aimerais obtenir
Nom : 818640formulaireenvoi.jpg
Affichages : 225
Taille : 35,3 Ko

Merci de bien vouloir m'aider
voici le code php

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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?
/*
//================================================================================
* phphq.Net Custom PHP Scripts *
//================================================================================
:- Script Name: phUploader
:- Version: 1.3
:- Release Date: June 23rd  2004
:- Last Updated: Jan 23 2010
:- Author: Scott Lucht <scott@phphq.net> http://www.phphq.net
:- Copyright (c) 2010 All Rights Reserved
:-
:- This script is free software; you can redistribute it and/or modify
:- it under the terms of the GNU General Public License as published by
:- the Free Software Foundation; either version 2 of the License, or
:- (at your option) any later version.
:-
:- This script is distributed in the hope that it will be useful,
:- but WITHOUT ANY WARRANTY; without even the implied warranty of
:- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
:- GNU General Public License for more details.
:- http://www.gnu.org/licenses/gpl.txt
:-
//================================================================================
* Description
//================================================================================
:- phUploader is a script for uploading single or multiple images or files to your website. You can specify your 
:- own file extensions that are accepted, the file size and naming options. This script was built and tested on 
:- IIS6/7 and Apache 2+. It's recommended to use php 5.1+ This script is very useful for temporary file
:- storage or simple sig and avatar hosting.
//================================================================================
* Setup
//================================================================================
:- To setup this script, upload phUploader.php to a folder on your server. Create a new folder named uploads
:- and chmod it to 777. Edit the variables below to change how the script acts. Please read the notes if you
:- don't understand something.
//================================================================================
* Change log
//================================================================================
:- Version 1.0
:-      1) Initial Release
:- Version 1.1
:-      1) Minor bug fixes
:-      2) Enabled multiple file uploads
:- Version 1.2
:-      1) Added CSS styling
:-      2) Removed automatic creation of file upload folder.
:-      3) Improved cookie security by hashing password and storing it within the cookie for authentication.
:-      4) Minor bug fixes   
:- Version 1.3
:-      1) Re-write of many core functions to increase security.
:-      2) Patched a vulnerability that allowed a remote attacker to upload a file with two extensions and then
:-         remotely execute the script on a vulnerable web server. <http://www.securityfocus.com/bid/25405>
:-      3) New feature allows files that pass validation to be uploaded while files that fail validation are not
:-         uploaded without rejecting to whole group of files.
:-      4) Fixed a flaw that allowed files with blank names or un-sanitized names to be uploaded which may
:-         cause issues for some users.
:-      5) Minor bug fixes   
//================================================================================
* Frequently Asked Questions
//================================================================================
:- Q1: I always get an error that the files were not uploaded. IE: GENERAL ERROR
:-      1) Make sure you have CHMOD your "uploads" folder to 777 using your FTP client or similar. If you do
:-          not know how to do this ask your hosting provider.
:-      2) Make sure the uploads folder actually exists. This is the second most common mistake aside from
:-          improper permissions.
:-      3) If you are having problems uploading after you have chmod the uploads folder 777, try using the
:-          full server path in $fullpath below. If you do not know this ask your host.
:-      4) Make sure "file_uploads" is set to ON in php.ini
:-
:- Q2: The page takes long to load and then gives me a page cannot be displayed or a blank page.
:-      1) This is usually due to a low value in php.ini for "max_execution_time". 
:-      2) A newer ini setting "max_file_uploads" in php 5.2.12 was added which may be limiting the number
         of simultaneous uploads.
:-      3) Your "upload_max_filesize" and "post_max_size" in php.ini might be set to low.
:-
:- Q3: How do I edit the colors of the form?
:-      1) You will need to edit the CSS near the bottom of the script to change the looks and colors of the form.
:-         Check http://www.w3schools.com/css/default.asp for more information on CSS.
:-
:- Q4: Can I remove your copyright link?
:-      1) I can't physically stop you. However, I really appreciate it when people leave it intact.
:-         Some people donate $5, $10, $20 to take it off.
:-
:- Q5: You never respond to my emails or to my questions in your forums!
:-      1) I'm a very busy guy. I'm out of town a lot, and at any given time I have several projects going on.
:-         I get a lot of emails about this script, not to mention my other ones.
:-      2) I only understand English. If your English is very bad please write in your native language and then
:-         translate it to English using <http://babelfish.altavista.com/babelfish/tr>.
:-      3) If you are going to contact me, describe the issue you are having as completly as possible.
:-         "dude me form don't work see it at blah.com what's wrong??!?!" will get no response, ever. Write
:-         in detail what the problem is. Spend a minute on it, and maybe I'll take some of my time to reply.
:-
/*
//================================================================================
* ! ATTENTION !
//================================================================================
:- Please read the above FAQ before giving up or emailing me. It may sort out your problems!
*/
 
 
// Max poid par image en KO
$max_file_size="512";
 
 
// Max poid pour toutes les images En KO
$max_combined_size="100000";
 
 
//Maximum file uploades at one time
$file_uploads="4";
 
 
//The name of your website
$websitename="Forum de Pralognan";
 
 
// Full browser accessable URL to where files are accessed. With trailing slash.
$full_url="http://YOUR_SITE/uploads/";
 
 
// Path to store files on your server If this fails use $fullpath below. With trailing slash.
$folder="./uploads/";
 
 
// Use random file names? true=yes (recommended), false=use original file name.
// Random names will help prevent files being denied because a file with that name already exists.
$random_name=false;
 
 
// Types of files that are acceptiable for uploading. Keep the array structure.
$allow_types=array("jpg","gif","png","zip","rar","txt","doc","pdf");
 
 
// Only use this variable if you wish to use full server paths. Otherwise leave this empty. With trailing slash.
$fullpath="";
 
 
//Use this only if you want to password protect your upload form.
$password=""; 
 
 
/*
//================================================================================
* ! ATTENTION !
//================================================================================
: Don't edit below this line.
*/
 
 
// Initialize variables
$password_hash=md5($password);
$error="";
$success="";
$display_message="";
$file_ext=array();
$password_form="";
 
 
// Function to get the extension a file.
function get_ext($key) { 
   $key=strtolower(substr(strrchr($key, "."), 1));
   $key=str_replace("jpeg","jpg",$key);
   return $key;
}
 
 
// Filename security cleaning. Do not modify.
function cln_file_name($string) {
   $cln_filename_find=array("/\.[^\.]+$/", "/[^\d\w\s-]/", "/\s\s+/", "/[-]+/", "/[_]+/");
   $cln_filename_repl=array("", ""," ", "-", "_");
   $string=preg_replace($cln_filename_find, $cln_filename_repl, $string);
   return trim($string);
}
 
 
// If a password is set, they must login to upload files.
If($password) {
 
   //Verify the credentials.
   If($_POST['verify_password']==true) {
      If(md5($_POST['check_password'])==$password_hash) {
         setcookie("phUploader",$password_hash);
         sleep(1); //seems to help some people.
         header("Location: http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);
         exit;
      }
   }
 
 
   //Show the authentication form
   If($_COOKIE['phUploader']!=$password_hash) {
      $password_form="<form method=\"POST\" action=\"".$_SERVER['PHP_SELF']."\">\n";
      $password_form.="<table align=\"center\" class=\"table\">\n";
      $password_form.="<tr>\n";
      $password_form.="<td width=\"100%\" class=\"table_header\" colspan=\"2\">Password Required</td>\n";
      $password_form.="</tr>\n";
      $password_form.="<tr>\n";
      $password_form.="<td width=\"35%\" class=\"table_body\">Enter Password:</td>\n";
      $password_form.="<td width=\"65%\" class=\"table_body\"><input type=\"password\" name=\"check_password\" /></td>\n";
      $password_form.="</tr>\n";
      $password_form.="<td colspan=\"2\" align=\"center\" class=\"table_body\">\n";
      $password_form.="<input type=\"hidden\" name=\"verify_password\" value=\"true\">\n";
      $password_form.="<input type=\"submit\" value=\" Verify Password \" />\n";
      $password_form.="</td>\n";
      $password_form.="</tr>\n";
      $password_form.="</table>\n";
      $password_form.="</form>\n";
   }
 
} // If Password
 
 
// Dont allow submit if $password_form has been populated
If(($_POST['submit']==true) AND ($password_form=="")) {
 
 
   //Tally the size of all the files uploaded, check if it's over the ammount.   
   If(array_sum($_FILES['file']['size']) > $max_combined_size*9024) {
 
      $error.="<b>FAILED:</b> All Files <b>REASON:</b> Combined file size is to large.
";
 
   // Loop though, verify and upload files.
   } Else {
 
 
      // Loop through all the files.
      For($i=0; $i <= $file_uploads-1; $i++) {
 
         // If a file actually exists in this key
         If($_FILES['file']['name'][$i]) {
 
 
            //Get the file extension
            $file_ext[$i]=get_ext($_FILES['file']['name'][$i]);
 
            // Randomize file names
            If($random_name){
               $file_name[$i]=time()+rand(0,100000);
            } Else {
               $file_name[$i]=cln_file_name($_FILES['file']['name'][$i]);
            }
 
            // Check for blank file name
            If(str_replace(" ", "", $file_name[$i])=="") {
 
               $error.= "<b>FAILED:</b> ".$_FILES['file']['name'][$i]." <b>REASON:</b> Blank file name detected.
";
 
            //Check if the file type uploaded is a valid file type. 
            }   ElseIf(!in_array($file_ext[$i], $allow_types)) {
 
               $error.= "<b>FAILED:</b> ".$_FILES['file']['name'][$i]." <b>REASON:</b> Invalide file type.
";
 
            //Check the size of each file
            } Elseif($_FILES['file']['size'][$i] > ($max_file_size*9024)) {
 
               $error.= "<b>FAILED:</b> ".$_FILES['file']['name'][$i]." <b>REASON:</b> File to large.
";
 
            // Check if the file already exists on the server..
            } Elseif(file_exists($folder.$file_name[$i].".".$file_ext[$i])) {
 
               $error.= "<b>FAILED:</b> ".$_FILES['file']['name'][$i]." <b>REASON:</b> File already exists.
";
 
            } Else {
 
               If(move_uploaded_file($_FILES['file']['tmp_name'][$i],$folder.$file_name[$i].".".$file_ext[$i])) {
 
                  $success.="<b>SUCCESS:</b> ".$_FILES['file']['name'][$i]."
";
                  $success.="<b>URL:</b> <a href=\"".$full_url.$file_name[$i].".".$file_ext[$i]."\" target=\"_blank\">".$full_url.$file_name[$i].".".$file_ext[$i]."</a>


";
 
               } Else {
                  $error.="<b>FAILED:</b> ".$_FILES['file']['name'][$i]." <b>REASON:</b> General upload failure.
";
               }
 
            }
 
         } // If Files
 
      } // For
 
   } // Else Total Size
 
   If(($error=="") AND ($success=="")) {
      $error.="<b>FAILED:</b> No files selected
";
   }
 
 
   $display_message=$success.$error;
 
 
} // $_POST AND !$password_form
 
 
/*
//================================================================================
* Start the form layout
//================================================================================
:- Please know what your doing before editing below. Sorry for the stop and start php.. people requested that I use only html for the form..
*/
?>
 
 
 
 
<style type="text/css">
   body{
      background-color:#FFFFFF;
      font-family: Verdana, Arial, sans-serif;
      font-size: 12pt;
      color: #000000;
   }
 
   .message {
      font-family: Verdana, Arial, sans-serif;
      font-size: 11pt;
      color: #000000;
      background-color:#EBEBEB;
   }
 
 
   a:link, a:visited {
      text-decoration:none;
      color: #000000;
   }
 
   a:hover {
      text-decoration:none;
      color: #000000;
   }
 
 
   .table {
      border-collapse:collapse;
      border:1px solid #000000;
      width:450px;
   }
 
   .table_header {
      border:1px solid #000000;
      background-color:#C03738;
      font-family: Verdana, Arial, sans-serif;
      font-size: 11pt;
      font-weight:bold;
      color: #FFFFFF;
      text-align:center;
      padding:2px;
   }
 
   .upload_info {
      border:1px solid #000000;
      background-color:#EBEBEB;
      font-family: Verdana, Arial, sans-serif;
      font-size: 8pt;
      color: #000000;
      padding:4px;
   }
 
 
   .table_body {
      border:1px solid #000000;
      background-color:#EBEBEB;
      font-family: Verdana, Arial, sans-serif;
      font-size: 10pt;
      color: #000000;
      padding:2px;
   }
 
 
   .table_footer {
      border:1px solid #000000;
      background-color:#C03738;
      text-align:center;
      padding:2px;
   }
 
 
   input,select,textarea {
      font-family: Verdana, Arial, sans-serif;
      font-size: 10pt;
      color: #000000;
      background-color:#AFAEAE;
      border:1px solid #000000;
   }
 
   .copyright {
      border:0px;
      font-family: Verdana, Arial, sans-serif;
      font-size: 9pt;
      color: #000000;
      text-align:right;
   }
 
   form {
      padding:0px;
      margin:0px;
   }
</style>
 
 
<?
If($password_form) {
 
   Echo $password_form;
 
 
} Else {
?>
 
 
<form action="<?=$_SERVER['PHP_SELF'];?>" method="post" enctype="multipart/form-data" name="phuploader">
<table align="center" class="table">
   <tr>
      <td class="table_header" colspan="2"><b><?=$websitename;?></b> </td>
   </tr>
 
 
   <?If($display_message){?>
   <tr>
      <td colspan="2" class="message">
 
 
 
         <?=$display_message;?>
 
 
 
      </td>
   </tr>
   <?}?>
 
   <tr>
      <td colspan="2" class="upload_info">
         <b>type de fichiers:</b> <?=implode($allow_types, ", ");?>
 
 
         <b>Taille max par image:</b> <?=$max_file_size?>kb.
 
 
         <b>Taille max pour toutes les images:</b> <?=$max_combined_size?>kb.
 
 
      </td>
   </tr>
   <?For($i=0;$i <= $file_uploads-1;$i++) {?>
      <tr>
         <td class="table_body" width="20%"><b>Select File:</b> </td>
         <td class="table_body" width="80%"><input type="file" name="file[]" size="30" /></td>
      </tr>
   <?}?>
   <tr>
      <td colspan="2" align="center" class="table_footer">
         <input type="hidden" name="submit" value="true" />
         <input type="submit" value=" envoyer fichier(s) " /> &nbsp;
         <input type="reset" name="reset" value=" annuler " onclick="window.location.reload(true);" />
      </td>
   </tr>
</table>
</form>
 
 
<?}//Please leave this here.. it really dosen't make people hate you or make your site look bad.. ?>
<table class="table" style="border:0px;" align="center">
   <tr>
   </tr>
</table>
</body>
</html>