code:
<?php foreach($posts as $post) {
echo $post['name']
};
?>
Result : 100 value I want to print 10 values only How that?
code:
<?php foreach($posts as $post) {
echo $post['name']
};
?>
Result : 100 value I want to print 10 values only How that?