[PHP] Condition qui marche pas ( BOOL )

Condition qui marche pas ( BOOL ) [PHP] - PHP - Programmation

Marsh Posté le 18-07-2003 à 11:46:36    

Code :
  1. //Chemin des images a afficher  
  2. $handle='\\\\srv2\\\groupes\\\referentiel\\' .$wrin ."_1.jpg";
  3. //Chemin de l'image lorsqu'il n'y pas de photo pour le produit
  4. $error='http://srvnet01\gif\blue1.jpg';
  5. if ($handle == TRUE) {
  6.  print "<img src=$handle  width='360' height='300'>";}
  7. else {
  8.  print"<img src=$error  width='360' height='300'>";
  9. }


 
Ca marche pas j y arrive pas je pourrais avoir un peu d aide merci

Reply

Marsh Posté le 18-07-2003 à 11:46:36   

Reply

Marsh Posté le 18-07-2003 à 11:50:29    

la Deuxieme condition ne passe pas

Reply

Marsh Posté le 18-07-2003 à 12:02:53    

:bounce:

Reply

Marsh Posté le 18-07-2003 à 12:06:52    

Faudrait pas plutot :
 
if( isset( $handle ) )
 
ou  
 
 
if( $handle != '' )
 

Reply

Marsh Posté le 18-07-2003 à 12:09:24    

Sakuraba a écrit :

la Deuxieme condition ne passe pas  


Ba tu m'étonnes, tu fais un test "est-ce que ma chaîne de caractères est égale à un booléen ?"
Tu veux tester quoi ?


---------------
Everyone thinks of changing the world, but no one thinks of changing himself  |  It is the peculiar quality of a fool to perceive the faults of others and to forget his own  |  Early clumsiness is not a verdict, it’s an essential ingredient.
Reply

Marsh Posté le 18-07-2003 à 12:19:12    

je vourdrais savoir si le fichier existe si oui il l affiche sinon il affiche l'image du error

Reply

Marsh Posté le 18-07-2003 à 12:20:48    


Fonction  file_exists  
 

Reply

Marsh Posté le 18-07-2003 à 12:47:27    

ouais ca marche merci

Reply

Marsh Posté le 18-07-2003 à 20:49:35    

au fait ca camarchera po :
$error='http://srvnet01\gif\blue1.jpg';
 
mais ca oui :
$error='http://srvnet01/gif/blue1.jpg';
 
mazik, non ?

Reply

Marsh Posté le 18-07-2003 à 22:40:19    

oauis maerci

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed