Forum Moderators: open
$queryGetArticles = "SELECT * FROM articles";
$resultGetArticles = mysql_query($queryGetArticles) or die ("couldnt get the data");
$row = mysql_fetch_array($resultGetArticles);
while ($row = mysql_fetch_array($resultGetArticles,MYSQL_ASSOC)) {
extract ($row);
echo "$title <br />";
}
$queryGetArticles = "SELECT * FROM articles ORDER BY articleID"; i dont think this is a problem with my queries but rather with a mistake in the structure of my db ... thats all i can think of. is this possible?