lets say you have a table of journal articles with fields of title, author, abstract and body, respectively named, tit, aut, abs and bod. Now, initially you want to display title, author and the first 250 characters of the abstract.
$sql="Select tit, aut, left(abs,250) as abstract from articles";
$result=mysql_query($sql);
while ($row=mysql_fetch_assoc($result)) {
echo "Title: ".$row['tit']."<br>";
echo "Author: ".$row['aut']."<br>";
echo "Abstract: ".$row['abstract']."<br>";
echo "<br><br>";
}
This will list for you the Title, Author and the first 250 characters of the abstract for every article in your database.
HTH - Blu