Ne m'en sortant pas avec mon script final j'ai mis une étape intermédiaire. Ce nouveau script affiche simplement le début d'une fiche.
Code :
- <html>
- <head>
- <?php
- include ('config.inc.php');
- $db = mysql_connect ($host,$user,$password) or die('Unable to connect '.mysql_error());
- mysql_select_db($database,$db) or die('Database not found '.mysql_error());
- $request = "SELECT * FROM archers WHERE id=".$id;
- #$request = "SELECT * FROM archers WHERE id=25";
- $result = mysql_query ($request,$db);
- $article =mysql_fetch_object($result);
- mysql_free_result($result);
- ?>
- </head>
- <body>
- <?php echo $article->name ?>
- <BR>
- <?php echo $article->firstname ?>
- <BR>
- <?php echo $article->license ?>
- </body>
- </html>
|
Avec la ligne qui sélectionne la fiche 25 ca marche. Par contre avec l'autre ligne ( juste au-dessus ) et un appel par: http://monsite/test.php?id=25 j'obtiens:
Pourtant j'ai suivi à la lettre ce tuto: http://webmaster.lycos.fr/topics/t [...] rkshop4/5/