Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6090437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:12:50+00:00 2026-05-23T12:12:50+00:00

Please have a quick read of this question first: Separating a list of entries

  • 0

Please have a quick read of this question first: Separating a list of entries by the first letter in a given field

Onto the main body of the question.

I am trying to sort several titles in a given array. Currently, they are echoed out alphabetically, however, the current code does not achieve one other aim: to display the alphabetical letter for its grouping. Example below:

A
=====================================
 - Alice's Adventured in Wonderland
 - Animal Farm

B
=====================================
 - Beyond the Chocolate War

and so forth.

Current, the code displays as so:

Alice's Adventured in Wonderland
Animal Farm
Beyond the Chocolate War

As you can see, I need to now categorise by Alphabetic letters. Another example of the HTML output is seen here: http://wiki.solusvm.com/index.php/Category:Documentation (note that I only need it to display category + titles like that, HTML output)

Here’s the code I’ve got so far:

<?php

function shamil_title_compare($a, $b) {
    return strcasecmp($a['title'], $b['title']);
}

usort($entries, 'shamil_title_compare');

$alphabetized = array();
foreach (range('A', 'Z') as $letter) {
    $alphabetized[$letter] = array();
}

foreach ($entries as $entry) {
    $title = $entry['title'];
    $firstWord = strtok($title, ' ');
    if (!in_array($firstWord, array('The', 'A'))) {
         $alphabetized[$firstWord[0]][] = $entry;
    } else {
        $nextWord = strtok(' ');
        if ($nextWord !== false) {
            $alphabetized[$nextWord[0]][] = $entry;
        } else {
            $alphabetized[$firstWord[0]][] = $entry;
        }
    }
       echo $entry['title']."<br/>";
}

What do I do now?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:12:51+00:00Added an answer on May 23, 2026 at 12:12 pm

    I would add each new letter to an array right before echo $entry['title']."<br/>";

    $letter = substr($entry['title'],0,1);
    if(!in_array($letter, $lettersArray) || count($lettersArray) == 0){
        array_push($lettersArray,$letter);
        echo $letter.'<p><hr /></p>';
    }
    echo $entry['title']."<br/>";
    

    This checks to see if the letter is already in the array, if not it adds it and prints it out.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this quick issue please. I have this code here which permits me
I have this quick question regarding cost estimation using Function Points. We are doing
I have a quick question about Java synchronization. Please assume the following code: public
I have a quick question about Java synchronization. Please assume the following code: public
I have a quick question regarding to mobile development, I'm new at this, so
please have a look at the following code import java.util.ArrayList; import java.util.List; public class
Please have a look at the following code: $(#saveButton).click(function(){ $this = $(#tableData).find(input:checked).parent().parent(); tea =
Please have a look at the following machine code ‎0111001101110100011100100110010101110011011100110110010101100100 This means something. I
Please have a look at the following code package Euler; import java.util.ArrayList; import java.util.List;
Please have a look at this form that I am trying to design with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.