07-18-2009, 05:07 PM
|
#8 (permalink)
|
|
The Addict
Join Date: May 2009
Posts: 287
Thanks: 5
|
Quote:
Originally Posted by russellharrower
Hi Just wondering what if i need to show more then 1 say like 10
|
PHP Code:
for ($n = 0; $n <= 9; $n++) {
echo "<p><strong>" . $data['title'][$n] . "</strong><br />";
echo $data['content'][$n] . "</p>";
}
Something like that...
|
|
|
|