Hello,
I try to generate a wml card and send a variable in an url like this :
<card id="Aventure" title="Aventure">
<p align="center">
<b>Aventure</b>
</p>
<p align="left">
<?
$sql = "Select * from $database.films where film_type = 'Aventure'";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result)){
$film_id = $row[film_id];
$film_title = $row[film_title];
echo "<a href=\"http://localhost/wap/film_detail.php?film_id=$film_id\">$film_title</a> <br/>";
}
?>
</p>
<p align="center">
<a href="#Accueil">Menu Films</a> <br/>
<a href="http://localhost/wap/index.php">Accueil</a>
</p>
</card>
How can I get the variable $film_id in the other page?
Thanks
Arno.