I'm not exactly sure what you are trying to do here, but I think it's something like the following:
Let's say you have news stories with headlines. They could be linked like this:
NEWS STORY HEADLINE
blah, blah, blah, blah..........< more >
At least this is how I do it.
Create a table in MySQL for the following info:
id
date_posted
headline
story
(add more if you need them)
To display the newest items on a 'summary' type page, just do something like this:
select id, headline, substring(story, 1, 100) from TABLE order by date_posted
This will give you the id of the story so you can link to it, the headline of the story, and the first 100 characters of the story itself.
From there, you can do something such as this with the result set:
while($row = mysql_fetch_row($query_result))
{
$id = $row[0];
$headline = $row[1];
$story = $row[2];
print("<a href=\"newspage.php?id=$id\">$headline</a><BR>");
print("$story");
print("<a href=\"newspage.php?id=$id\"> Full Story</a>");
Is this sort of what you are looking for?
-- Jason