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 8495309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:32:19+00:00 2026-06-10T23:32:19+00:00

I have a code which retrieves the values from data base.but i want to

  • 0

I have a code which retrieves the values from data base.but i want to fetch this values in reverse order.See this example

While($row=mysql_fetch_assoc($rs)){


 echo $row['id']."<br>";//gives 1 and 2 and so on 
   echo $row['val']."<br>";// gives abc and def and so on

}

But i want

  2
    def
    1
   abc

How could i do this .i don’t wanna use the Query for this like use of ORDER BY.so can i control this at PHP End??

  • 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-06-10T23:32:21+00:00Added an answer on June 10, 2026 at 11:32 pm
    while($row = mysql_fetch_array($rs)){
        $data[] = $row;
    }
    
    $data = array_reverse($data,true);
    
    while($data){
    }
    

    Haven’t tested it though

    I tested it in this site and it works. Here’s the snippet I used:

    $data = array(1 => array("foo" => "bar"), 2 => true);
    $data = array_reverse($data,true);
    print_r($data);
    

    Edit:
    Using your edited answer, I got this:
    $data = array(1 => array(1, “abc”), 2 => array(2, “def”));

    $data = array_reverse($data,true);
    foreach($data as $d){
        echo "id>".$d[0]." | val>".$d[1]."<br />";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php file which retrieves data from a MySql database and display
I have the following code which retrieves data with a JSON request: // Replace
I have an ajax code which passes data to php and then retrieves data
I have an IList<string> named codes storing the code values for which I want
I have code to retrieve stomp messages, which works. I then want to grab
I have the following code, which will retrieve a filename from a table and
i have this code, which helps me to retrieve all table fields and associate
I have code which needs to do something like this There is a list
I totally want to avoid using inline javascript! But i have a table which
I have a spinner which is populated from the database. This in turn is

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.