thanks for the replies folks.
i guess what i'm after isn't quite clear.
i'd like to pull all the data from the table regardless of category id.
then taking that variable and pulling from it separate variables for each category id. (in a way a second 'query'?)
what i'm basically trying to figure out is to show all categories on one page yet separated individually by category will i have to write multiple queries or can i get away with only one.
here's my original query:
mysql_select_db($database_dbconn_blog, $dbconn_blog);
$query_articles = "SELECT * FROM BlogArticles";
$articles = mysql_query($query_articles, $dbconn_blog) or die(mysql_error());
$row_articles = mysql_fetch_assoc($articles);
$totalRows_articles = mysql_num_rows($articles);
thanks for any help you can provide.
sorry if the original post wasn't clear.