problème avec script d'upload : variables indéfinies
	
	
		Salut, je suisun débutant en programmation web et je dois réaliser un site intranet à l'aide EasyPHP1-8. Pour le moment je teste mon 1er formulaire dont le code est:
 
	Code:
	
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 
 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=windows-1250">
  <meta name="generator" content="PSPad editor, www.pspad.com">
  <title> ESSAI REPERTOIRE </title>
  </head>
  <body>
<FORM METHOD="POST" ACTION="upload3.php" ENCTYPE="mutipart/form-data">
Spécifier le document
<INPUT TYPE="FILE" NAME="fichier"> 
<BR><BR>
<INPUT TYPE="SUBMIT" VALUE="ENVOYER">
  </FORM>
  </body>
</html>
et le code de upload3.php est:
<?php
$stock = 'D:\\kevin\\ProjetPHP\\';
if (move_uploaded_file($_FILES['fichier']['tmp_name'], $stock.$_FILES['fichier']['name']))
{
    echo "Le fichier ".$_FILES['fichier']['name'].
            " a été téléchargé avec succès dans ".$stock;
}
?> | 
 j'obtiens ces messages:
Notice: Undefined index: fichier in d:\kevin\projetphp\site\upload3.php on line 4
Notice: Undefined index: fichier in d:\kevin\projetphp\site\upload3.php on line 4
Please j'ai besoin d'aide :(