<div id="websites_standard_page_table" style="height: 100%; width: 100%;">
    <table id="websites_description_table" style="position: relative; left: <?php 
echo $inner_menu_left;
?>
%; top: <?php 
echo $inner_menu_top;
?>
%;">
      <tr><td>
        <?php 
include $top_folder . "Layouts/micropost.php";
?>

        <?php 
$post_number = 0;
for ($y = 0; $y < 1; $y++) {
    for ($p = 0; $p < count($post_titles) - 1; $p++) {
        micropost($post_number, $post_titles[$p + 1], $post_descrs[$p], $post_links[$p + 1]);
        $post_number++;
    }
}
$post_numbers = $post_number - 1;
echo "\n            <script> posTables('" . $post_numbers . "', 0, 0); </script>\n          ";
?>

      </td></tr>
    </table>
  </div>
</div>
        <?php 
include $top_folder . "Layouts/micropost.php";
?>

        <?php 
$post_titles = array("Silenzi", "Dramma in 4 parti", "Studio secondo", "bla bla bla");
?>
        <?php 
$post_descrs = array("silenzi e", "perché del resto sono assolutamente sicuro che, che oggi non sono proprio così e mi piace pensare che un amore", "avete idea del gioco?", "tin tirupi ricca ricca sul sul ba ");
?>

        <?php 
$post_number = 0;
for ($y = 0; $y < 1; $y++) {
    for ($p = 0; $p < 4; $p++) {
        micropost($post_number, $post_titles[$p], $post_descrs[$p]);
        $post_number++;
    }
}
$post_numbers = $post_number - 1;
echo "\n            <script> posTables('" . $post_numbers . "', 0, 0); </script>\n          ";
?>

      </td></tr>
    </table>
  </div>
</div>



<?php