Jump to content

Showing posts order by catagories


TobiasNielsen

Recommended Posts

first of all.. iam still new to php and only on a self learnd level..
But i got this to work  :geek:

 

<?php
include('includes/connect.php');

function getPosts() {
	$query = mysql_query("SELECT * FROM posts") or die(mysql_error()) ;
	while($post = mysql_fetch_assoc($query)) {
		echo "<h2>" . $post['Title'] . " af " . $post['Author'] . " Katagori " . $post['Category_ID'] .  "</h2>";
		echo $post['Content'];
	}
}
?>

 

now my quest is to turn the flow so the newest post comes first on the page, and make it show the Category title insted of the id and to sort the posts into the diffent categories  Category_ID i think.. 

any help on that?

 

Link to comment
Share on other sites

Hmm, you say you want the newest posts first, but that you also want them sorted by category. I'm not sure how you mean for that to happen. If the newest post has a category of A and the second newest post has a category of B, do you want all the category A posts shown before the category B post?

 

This is really a MySQL question and not a PHP question.

 

Also, you haven't stated what your DB structure is. I will assume categories are defined in a related table. The below only groups by category and doesn't do anything regarding the newest posts because I'm not sure what you really want.

 

 

<?php
include('includes/connect.php');

function getPosts()
{
    $query = "SELECT p.Title, p.Author, p.content,
                     c.Category_ID, c.Category_Name
              FROM posts AS p
              JOIN categories AS c
                  ON p.Category_ID = c.Category_ID
              ORDER BY Category_Name";
    $result = mysql_query($query) or die(mysql_error());
    while($post = mysql_fetch_assoc($result))
    {
        echo "<h2>{$post['Title']} af {$post['Author']} Katagori {$post['Category_ID']}</h2>{$post['Content']}\n";
    }
}
?>
Edited by Psycho
Link to comment
Share on other sites

i want to show it like on 3 pages (if i have 2 categories) first like they see it now but with the order by like jessica said and if people want to se the content of CatagoryA they will see id5 then id3 and last id1 and if they want to see CategoryB they will see id4 and then id2 and so on if the posts in that order

 

posts with
id 1 with categoryA

id 2 with categoryB

id 3 with categoryA

id 4 with categoryB

id 5 with categoryA

 

is that what you mean?

Link to comment
Share on other sites

Um,yeah. Your explanation is very confusing.

 

You state you want the most recent post first, but that you want them sorted by category as well. That doesn't make sense. So, let's create a scenario:

 

Post 1, Time 8:00AM, Category A

Post 2, Time 9:00AM, Category B

Post 3, Time 10:00AM, Category B

Post 4, Time 11:00AM, Category A

 

How do you want those displayed?

Link to comment
Share on other sites

like this :)              ((((Re-edit)))

 

script / page  1

 

Post 4, Time 11:00AM, Category A

Post 3, Time 10:00AM, Category B

Post 2, Time 9:00AM, Category B

Post 1, Time 8:00AM, Category A

 

 

 

script / page 2

 

Post 4, Time 11:00AM, Category A

Post 1, Time 8:00AM, Category A

 

 

script / page 3 

 

Post 3, Time 10:00AM, Category B

Post 2, Time 9:00AM, Category B

Edited by TobiasNielsen
Link to comment
Share on other sites

OK, so you want TWO COMPLETELY DIFFERENT solutions. I don't see where you clearly stated that. All I see was a request to have the records ordered by data AND grouped by category.

 

In any event, this is still a MySQL problem (moving to the MySQL forum).

 

Request #1:

Show posts in order of submission and include the Category name in the output. You will need to JOIN the posts table onto the Category table (assuming there is a separate table - which there should be). I already showed how to do that, but I added an order by Category due to the previous confusing request. You should be using something like this. BUt, this is only an example because I do not know your table/field names.

 

    $query = "SELECT p.Title, p.Author, p.content, p.date
                     c.Category_ID, c.Category_Name
              FROM posts AS p
              JOIN categories AS c
ON p.Category_ID = c.Category_ID
              ORDER BY p.date DESC";

 

Request #2:

Show all the posts for a specific category. For this you will want to build a page that takes an optional parameter on the query string: e.g. show_category.php?catID=3. Then on the script you will use that category ID to get all the posts associated with that category. Here is an example of the query to use

 

$catID = intval($_GET['catID']);
    $query = "SELECT p.Title, p.Author, p.content, p.date
                     c.Category_ID, c.Category_Name
              FROM posts AS p
              JOIN categories AS c
                ON p.Category_ID = c.Category_ID
              ORDER BY p.date DESC
              WHERE c.Category_ID = '$catID'";
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.