Citation :
// on se connecte à MySQL $db = mysql_connect('localhost', 'xxxxxx', 'xxxxxxx'); // on séléctionne la base mysql_select_db('popilove',$db); // on créer la requete SQL et on l'envoie $sql = 'SELECT topic_id, topic_title FROM caroloforum_topics ORDER BY topic_id DESC LIMIT 0,11'; // on envoie la requete $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error()); // on fait une boucle qui va faire un tour pour chaque enregistrements while($data = mysql_fetch_array($req)) { // on affiche les informations de l'enregistrements en cours $length = 40; echo '<a href="http://popilove.free.fr/_forum/viewtopic.php?t="'.$data[topic_id].'"><li>' .substr($data['topic_title'], 0, $length).'</li></a>'; } // on ferme la connexion à mysql
|