le 17/07/2006 à 19:16
sparh
Salut à tous, je me tente à la création de page dynamique,
tout allé bien mais là je bloque sur un pti problème et j'arrive pas à le résoudre
Voilà ma page qui récupère la valeur envoyé pour permettre de jouer.
J'arrive à récupérer les variables pour le nom du jeux et le texte mais ensuite il faut que je récupère
la variable: adresse qui est l'adresse du jeu flash.
Impossible de récupérer le champ adresse. (<? echo $row['adresse'] ?>) et surtout de l'insérer au bon
endroit pour que le jeu se lance!
Si quelqu'un avait une idée pour me débloquer,
merci d'avance
tout allé bien mais là je bloque sur un pti problème et j'arrive pas à le résoudre
Voilà ma page qui récupère la valeur envoyé pour permettre de jouer.
J'arrive à récupérer les variables pour le nom du jeux et le texte mais ensuite il faut que je récupère
la variable: adresse qui est l'adresse du jeu flash.
Impossible de récupérer le champ adresse. (<? echo $row['adresse'] ?>) et surtout de l'insérer au bon
endroit pour que le jeu se lance!
Si quelqu'un avait une idée pour me débloquer,
merci d'avance
<body bgcolor="#14285f">
<table width="100%" border="1">
<tr>
<td height="120" colspan="3" align="center" bgcolor="#000000"><img src="../Image/logo.gif" alt="Sparh Prods" width="500" height="78" longdesc="Image/logo.gif" /></td>
</tr>
<tr>
<td height="1" colspan="3" align="center" bgcolor="#000000"><table width="800">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td width="156" height="508" align="center" valign="top"><table width="157">
<tr>
<td height="25" align="center" id="navigation"><a href="#">Accueil</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Zone membre</a> </td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Actualités</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Vidéos</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Musique</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Jeux</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Yetisports</a></td>
</tr>
<tr>
<td height="25" align="center" id="navigation"><a href="#">Les blagues</a> </td>
</tr>
<tr>
<td height="25" align="center" id="navigation">Les haikus </td>
</tr>
<tr>
<td height="25" align="center" id="navigation">Les textes </td>
</tr>
<tr>
<td height="25" align="center" id="navigation"> </td>
</tr>
<tr>
<td height="25" align="center" id="navigation"> </td>
</tr>
<tr>
<td height="25" align="center" id="navigation"> </td>
</tr>
<tr>
<td height="25" align="center" id="navigation"> </td>
</tr>
</table></td>
<td width="540"><?
$jeu=$_GET['jeux'];
include"config.php";
@mysql_connect($serveur, $login, $password)or die ("impossible de se connecter");
mysql_select_db($base)or die ("impossible de se connecter a la base");
$result=mysql_query("SELECT jeux,image1,image2,texte,categorie1,categorie2,vote,adresse FROM Jeux WHERE jeux='$jeu' ");
while($row=mysql_fetch_array($result))
{
print("<h1>$row[jeux]</h1> $row[texte]<br><br>");
}
?>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="304" height="200" title="Yetisport">
<param name="movie" value="<? echo $row['adresse'] ?>" />
<param name="quality" value="high" />
<embed src="<? echo $row['adresse'] ?>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="304" height="200"></embed>
</object></td>
<td width="215"> </td>
</tr>
<tr>
<td height="108"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>