QUESTO è IL CODICE DELL'INTERA PAGINA

<?php
/**
* Template Name: Voti
*
* @package Marconi
* @since Marconi 1.0
*/
get_header();

?>
<?php while ( have_posts() ){
the_post(); ?>
<div id="parteSinistra">



<?
$original_post = $post;
$original_id = $post->ID;
$args = array( 'post_type'=>'page', 'child_of' => $post->ID, 'parent' => $post->ID,'sort_order' => 'ASC','sort_column' => 'menu_order' );
$myposts = get_pages( $args );
foreach( $myposts as $post ){
setup_postdata( $post );
?>
<form action="http://marconi2.advworks.it/?page_id=577 " method="POST">
<table class="tabclassifica">
<tr class="testata">
<td width="50"></td><td width="100"><? the_title(); ?></td><td width="50">V</td><td width="50">GF</td><td width="50">GR</td><td width="50">GS</td><td width="50">RP</td><td width="50">RS</td><td width="50">AU</td><td>AS</td>
</tr>


<?
$i=0;
while(the_repeater_field('voti')){
?>


<tr>
<td>
<?
if(get_sub_field('giallo')==1 and get_sub_field('rosso')==0)
{
?>
[img]<?=get_bloginfo([/img]/images/giallo.png"/>
<?
}
?>
<?
if(get_sub_field('giallo')==0 and get_sub_field('rosso')==1)
{
?>
[img]<?=get_bloginfo([/img]/images/rosso.png"/>
<?
}
?>
<td>


<?=get_sub_field('giocatore');?></p>
</td>

<td>


<?=get_sub_field('voto')?></p>
</td>
<td>



<?=get_sub_field('gol_fatti')?> </p>
</td>
<td>


<?=get_sub_field('gol_rigore')?> </p>
</td>
<td>


<?=get_sub_field('gol_subito')?> </p>
</td>
<td>


<?=get_sub_field('rigore_parato')?> </p>
</td>
<td>


<?=get_sub_field('rigore_sbagliato')?> </p>
</td>
<td>


<?=get_sub_field('autorete')?> </p>
</td>
<td>


<?=get_sub_field('assist')?> </p>
</td>
<td>
<input type="checkbox" name="giocatore <?$i?>" value=<?get_sub_field('voto')?>>

</td>

</tr>



<?
$i++;
}
?>

</table>
<input type="submit" value="Invia">
</form>
<?
}
$post =$original_post;
setup_postdata($post);
?>

</div>
<?
get_sidebar();
?>
<?
}
?>
<?
get_footer(); ?>