Lid |
|
Misschien moet je dit doen:
#
$sql = "SELECT topic_id, topic_titel, topic_cat, topic_datumtijd,status,gebruiker_id FROM topic
#
WHERE topic_cat = '" . mysql_real_escape_string($_GET['cate']) . "' ORDER BY id DESC"; // id order by DESC
#
// we maken een query die alle topics ophaalt met hun gegevens
#
$resultaat = mysql_query($sql) or die(mysql_error());
# $sql = "SELECT topic_id, topic_titel, topic_cat, topic_datumtijd,status,gebruiker_id FROM topic # # // we maken een query die alle topics ophaalt met hun gegevens #
|