x


PHP MySQL - How to insert row of data

Hey,

I'm writing a PHP file that will take variables from the POST method (I know how to do this) and insert them into a table at the top. Then it will push the other 10 rows down one, and delete the last one.

So basically it's a table with rows of the most recent 10 updates. Here it is: alt text

Thanks for the help!

more ▼

asked Apr 21 '11 at 02:48 AM

MythStrott gravatar image

MythStrott
176 22 23 31

(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

I would suggest adding a timestamp column to your table that gets set to the current time when a row is added.

Then you could query the table and order the results by the new column to get what your after.

If you have to limit the number of rows in the table for some reason, you could delete rows 11-n programmatically.

I have a feeling that's not what you're looking for, but here's some quick pseudo-code anyways...

SQL:

CREATE TABLE user_comment (
  comment_id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
  comment_text VARCHAR(100),
  comment_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

PHP:

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

You could also order the result by comment_id descending to get the same effect.

more ▼

answered Apr 21 '11 at 05:33 AM

jahroy gravatar image

jahroy
3.2k 14 18 41

Thanks very much!

I know the language well enough that I can go off of that pseudo-code. What I really needed was just the structural idea of how to organize it. And using timestamps instead of an id that changes is perfect.

Thank you very much, this should work!

Apr 21 '11 at 08:39 PM MythStrott
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x232
x131
x102
x16

asked: Apr 21 '11 at 02:48 AM

Seen: 1539 times

Last Updated: Apr 21 '11 at 02:48 AM