DEV Community

Discussion on: web programming

 
pgrab86 profile image
Paweł Grabowski

You will get more content from database, than you need, but if it is just a 5-10 posts, there is completely no problem at all. And to show only one post content you have to make a simple condition like:


for( $x = 0; $x <= 10; $x++ ) {
if( $x == 0 ) {
echo $result[$i]->title;
echo $result[$i]->content;
} else {
echo '<a href="'. $result[$i]->link .'">'. $result[$i]->title .'</a>';
}
}

where $result is data from your database

Thread Thread
 
kelvince profile image
Kelvince

Ok let me work on this,thanks alot

Thread Thread
 
pgrab86 profile image
Paweł Grabowski

Good luck and if you will have any problems, paste here (or codepen) some part of code you have. It will be easier to help

Thread Thread
 
kelvince profile image
Kelvince

My pleasure