Basically I'm retrieving a JSON content from a php call using some custom API. The arrays are all social posts. The code I'm using at the moment displays all of them at once when the page is loaded. I Would like to show them 10 or 20 at time, depending on my need, I'm using a PHP foreach loop to put the data on the page. I would like to get the first 10 indexes (from [0] to [10]) and setup a button to load the next indexes [11], [12], [13]..., let's say 10 at time( from [11] to [20], from [21] to [30] ) at each click. Is this possible?
The JSON content looks like this:
Array
(
[comments] => Array
(
[0] => Array
(
[type] => instagram
[author] => Rick B.
[message] => 👒👿 #follow4follow #followme
[authorImage] => https://image.load.here/image.jpg
)
[1] => Array
(
[type] => twitter
[author] => John Tesla
[message] => Welcome to the Fine Living
[authorImage] => https://image.load.here/image.jpg
)
[2] => Array
(
[type] => facebook
[author] => Rob Roy
[message] => Buscando el perfect sunset!
[authorImage] => https://image.load.here/image.jpg
)
[...]
[180] => Array
(
[type] => vine
[author] => Joe Fox
[message] => Bom dia insônia! #bomdia
[authorImage] => https://image.load.here/image.jpg
)
)
)
This is the (semplified) code that i'm using:
<!-- load content loop -->
<?php if(count($comments) > 0): ?>
<?php
$counter = 0;
foreach($comments as $comment): ?>
<?php
$type = $comment['type'];
$author = $comment['author'];
$message = $comment['message'];
$avatar = $comment['authorImage'];
$counter++;
?>
<!-- write content -->
<?php
// need to repeat this block of code eg. 10 times
// and not eg: 180 (is the actual number of indexes [0], [1], [2] in my JSON array.
echo '<div class="social ' . $type . '">
<p class="icon"><img src="'.$type.'".jpg"/></p>
<p class="avatar">' . $avatar . '</p>
<p class="author">Posted by ' . $author . '</p>
<p class="message">' . $message . '</p>
</div>';
?>
<?php endforeach; ?>
<?php else: ?>
<h2>There are no comments yet</h2>
<?php endif; ?>
.mycontents_xxat time