I'm not sure why not. You changed the two words below?
$q="SELECT
message FROM
post";
The first one is the row name and the second is the table name.
Oh I know why it's working. You are not using the same querry as me. Sorry I didn't provide it the first time.
Here:
$q="SELECT name,message FROM post ORDER BY name LIMIT $start,$incr";
That's the main thing you must have. Again, change the names to ones that you use.
Then, the rest of the stuff, all the printing info goes here:
$res=mysql_query($q);
while($row=mysql_fetch_array($res)){
print($row["name"]);//or whatever the name of the row is instead of "name".
}
Rick If I have helped you just click the first link below to let me know
