soap - How can I provide a limited output of a PHP-Loop from a SoapClient call to 19 items? -
i make soap call , return tree-object data want process. use foreach() loop , display on page. of calls got many items , need add limit iteration x ammount of items on front end.
foreach($variable->node->node $object) { ?> <div class="page"><p><? echo $object->node; ?></p></div>
with limit wonder how can can counter 19 items before adding break , close tab. end ups like:
<div class="page"><p>item 1</p><p>item 2</p>.... item 20</p></div> <div class="page"><p>item 20</p><p>item 21</p>....
you can make counter in 2 ways, first regular counter like:
$counter++;
that code increments var $counter one. or can use statement counter:
foreach($variable->node->node $counter=>$object) {
with done, can create point of break this:
if(!($counter % 19)) add_break_and_close_tab()
Comments
Post a Comment