probleme

probleme - PHP - Programmation

Marsh Posté le 15-11-2003 à 23:15:14    

salut :pt1cable:  :pt1cable:  :sweat:  :D  :ange:  :wahoo:  
 
jai fait ce code:
 
les images saffichent pas mais ya pas de message derreur car le navigateur cherche des iamges nommées test.gif !!! comment faire pour quil cherche les bonnes ?
 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>comedie page</title>
</head>
<body>
 
<table>
<tr>
<td><i><div align="center"><font color="#ff0000"><b>Titre du film</b></font></div></i></td>
<td><i> <font color="#ff0000"><b><div align="center">Date de sortie</div></b></font></i></td>
<td><i> <font color="#ff0000"><div align="center"><b>Realisateur</b></div></font></i></td>
<td><i> <font color="#ff0000"><div align="center"><b>Origine du film</b></div></font></i></td>
<td><i> <font color="#ff0000"><div align="center"><b>Genre</b></div></font></i></td>
<td><i> <font color="#ff0000"><div align="center"><b>Avertissement</b></div></font></i></td>
</tr>
 
<?
$db = mysql_connect("localhost", "root", '');
mysql_select_db("site",$db);
$sql = "SELECT * FROM films WHERE genre='Comedie' OR genre='Comédiedramatique'";
$req = mysql_query($sql) or die("Erreur SQL !<br>".$sql."<br>".mysql_error());
while($data = mysql_fetch_array($req))
{
echo '<tr>';
echo '<td><b><i>'.$data['Titre'].'</td>';
echo '<td><i>'.$data['Date'].'</td>';
echo '<td><i>'.$data['Realisateur'].'</td>';
echo '<td><i>'.$data['Origine'].'</td>';
echo '<td><i>'.$data['Genre'].'</td>';
if($data['Avertissement']=="Tous%20Publics" ){$logo="tous";}
elseif($data["Avertissement"]=="Accord%20Parental%20Souhaitable" ){$logo="souhaitable";}
elseif($data["Avertissement"]=="Interdit%20-12%20ans" ){$logo="12ans";}
elseif($data["Avertissement"]=="Interdit%20-16%20ans" ){$logo="16ans";}
elseif($data["Avertissement"]=="Interdit%20-18%20ans" ){$logo="18ans";}
else {$logo="test";}
echo $logo;
echo '<td><img src="design/avertissements/'.$logo.'.gif"><br><i>'.$data['Avertissement'].'</b></td>';
}
mysql_close();  
?>
 
</table>
</body>
</html>  
 
 
merci

Reply

Marsh Posté le 15-11-2003 à 23:15:14   

Reply

Marsh Posté le 15-11-2003 à 23:32:55    

si tu fait un echo $data["avertissement"]; je parie qu'il te retourne pas des reponse avec %20 :o
 
j'aurai plus mis un  
elseif($data["Avertissement"]=="Interdit -12 ans" ){$logo="12ans";}

Reply

Marsh Posté le 15-11-2003 à 23:33:12    

ton gros if else if... passe tjrs dans le dernier cas :o
 
NB: les sites de porn, c'est mal :O


---------------
From now on, you will speak only when spoken to, and the first and last words out of your filthy sewers will be "Sir!"
Reply

Marsh Posté le 15-11-2003 à 23:33:47    

wai je verrais plus un switch ici, ca fait plus propre :)

Reply

Marsh Posté le 15-11-2003 à 23:37:40    

euuh ? oauis je debute svp eclaisicez moi un peu mieu .....  
 
et jai modifier les elseif($data["Avertissement"]=="Interdit -12 ans" ){$logo="12ans";}
mais tj pareil

Reply

Marsh Posté le 15-11-2003 à 23:38:48    

fait un

Code :
  1. echo $data["Avertissement"];

et donne nous le resultat :)

Reply

Sujets relatifs:

Leave a Replay

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