Hello. I'm trying to make a page with a whole bunch of tips for a game show
Prev 1 2 3 4 5 Next type links, but I'm not having much luck. I really believe this is because I am a total newbie with PHP and MySQL.
Anyways, here's what my table looks like:
Code: Select all
CREATE TABLE tips (
id int(4) NOT NULL auto_increment,
author text,
email text,
url text,
title text,
text text,
catid text,
PRIMARY KEY (id)
) TYPE=MyISAM;
Now, I would like to take the information from the table (the author, email, url, title, and text fields) and display it on my page, and, if there are more than... say 25 listings, display a set of links.
Can anyone help me with this? Thanks.
