Ciao a tutti.
Ho questo codice funzionante:
Codice PHP:
$result = mysql_query("select * FROM wp_comments WHERE comment_approved='1' ORDER BY comment_ID desc limit 3 " ,$db);
while ($records = mysql_fetch_assoc($result)) {
echo "<li><a href=\"http://nomesito.it/?p=". $records['comment_post_ID'] ."\"> [ ". $records['comment_author'] ." ] </a>". $records['comment_content'] ."</li>";
}
Che come risultato in html mi da ad esempio:
Codice HTML:
<li>[ <a href="http://nomesito.it/?p=120">comment_author</a> ] comment_content </li>
Dove 120 = $records['comment_post_ID']
Adesso all'url devo aggiungere questo: #comment_ID
Quindi l'url è del tipo http://nomesito.it/?p=120
Io devo arrivare ad una cosa del genere: http://nomesito.it/?p=120#comment-10
Dove comment-10 = comment_ID (preso dal database)
Come faccio ad aggiungerlo a questo pezzo (vicino a comment_author)? :
Codice PHP:
<a href=\"http://nomesito.it/?p=". $records['comment_post_ID'] ."\"> [ ". $records['comment_author'] ." ] » </a>