Skip to content

Instantly share code, notes, and snippets.

@jsstoni
Created March 21, 2017 19:19
Show Gist options
  • Save jsstoni/91c94622b8afad5dbc34d8e504048ba8 to your computer and use it in GitHub Desktop.
Save jsstoni/91c94622b8afad5dbc34d8e504048ba8 to your computer and use it in GitHub Desktop.
insertar de 6 en 6
<?php
$totalMostrar = 6;
$empieza = 1;
$restos = $empieza % $totalMostrar;
$mostrar = array('...');
for($i = 0; $i < count($mostrar); $i++){
if($restos == 1) -> //open
if($restos == 0) -> //close
$empieza++
}
if(restos != 0) -> //close
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment