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

  • Home
  • SEARCH
  • 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 4273108
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:40:06+00:00 2026-05-21T07:40:06+00:00

So I just wrote this little script. The problem is I want the newest

  • 0

So I just wrote this little script. The problem is I want the newest message at the bottom not at the top so some how I need to take the results from the mysql query and reorder them before echoing them out.. thanks for any help…

EDIT: DESC is the correct order the while loop is the problem.. since php runs line by line

p.s. please do not worry about security features I will add that in later.

<?php
mysql_connect('localhost', '', '');
mysql_select_db('');

if(isset($_POST['submit'])) {

    date_default_timezone_set('America/New_York');

    $_POST['username'] = 'Guest';
    //$_POST['message'] = "Hello my name is Guest!";

    mysql_query("INSERT INTO chat (username,message,date,time) VALUES ('".$_POST['username']."','".$_POST['message']."','".date('n.j.o g:i:s A')."','".time()."')");

}

$result = mysql_query("SELECT * FROM chat ORDER BY time DESC LIMIT 10");

while ($row = mysql_fetch_assoc($result)) {
    $username = $row['username'];
    $message = $row['message'];
    $date = $row['date'];

    echo "<div><b>".$username.":</b> ".$message." <i>".$date."</i></div>";
}
?>

<form method="post">
<input name="message" />
<input type="submit" name="submit" value="Send"/>
</form>
<br />
  • 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-21T07:40:06+00:00Added an answer on May 21, 2026 at 7:40 am

    You can easily reverse the order in PHP by first storing all the results and accessing them later:

    <?php
    
    $records = array();
    while ($row = mysql_fetch_assoc($result)) {
        $records[] = $row;
    }
    
    $records = array_reverse($records);
    
    foreach ($records as $row) {
        $username = $row['username'];
        $message = $row['message'];
        $date = $row['date'];
    
        echo "<div><b>".$username.":</b> ".$message." <i>".$date."</i></div>";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This code does not seem to compile, I just need to write something to
I just wrote a new web part and now I am getting this error
I've this little script which does it's job pretty well but sometimes it tends
I have just upgraded my server 2003 to serrver 2008. As I write this,
I just wrote my first web service so lets make the assumption that my
I just wrote the following C++ function to programmatically determine how much RAM a
I just wrote an if statement in the lines of if (value == value1
I have a macro that I wrote to just help me with my unit
I wrote a simple web service in C# using SharpDevelop (which I just got
I just lost 50% of my answer on a test because I wrote the

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.