Hello
I'm trying to make a database with a single column with 20 rows.
(I think I can do this with PHPmyAdmin.
From there. I want to know how I (using PHP) can add a value to one of the 20 rows, after 20 items have been added, adding a new value pushes off the oldest one.
Then I want to be able to get the contents of the table as an array.
I'm trying to make a "Last 20 searches" for my website.
I have the search function done, Now I want to add this table of 20 values, that can get added to and updated with each search query.
Thanks!
K