<?php
echo '<form action="' . $_SERVER["PHP_SELF"] . '" method="POST">';
echo '<fieldset>';
echo '<div>';
echo '<h1>Seleccione los artículos que desea comprar</h1>';
echo '</div>';
echo '<div>';
echo '<input type="checkbox" name="Rojo[]" value='.mostrar_campo["Rojo"].'/>Boligrafo Rojo(35 céntimos)';
echo '<input type="checkbox" name="Azul" value='.mostrar_campo["Azul"].'/>Boligrafo Azul(35 céntimos)';
echo '<input type="checkbox" name="grueso" value='.mostrar_campo["grueso"].'/>Lapicero grueso(27 céntimos)';
echo '<input type="checkbox" name="fino" value='.mostrar_campo["fino"].'/>Lapicero fino(30 céntimos)';
echo '<input type="checkbox" name="goma" value='.mostrar_campo["goma"].'/>Goma de borrar(35 céntimos)';
echo '</div>';
echo '<input type="submit" value="Enviar" />';
echo '</div>';
echo'</fieldset>';
echo '</form>';
?>
</body>
</html>