Je comprend pas, c'est normal ca ?
 
Code :
 - $machin = 1;
 - 	if ($machin == "yes" )
 - 	{
 -   echo "chelou";
 - 	}
 
  | 
        N'affiche rien, donc "yes" != 1....Normal 
Code :
 - $machin = 0;
 - 	if ($machin == "yes" )
 - 	{
 -   echo "chelou";
 - 	}
 
  | 
         Affiche chelou, donc "yes" = 0  
  
 
Je comprend pas...