Jump to content

[Resolvido] problema carregar 3 combobox


Recommended Posts

Posted

Bom dia, estou com um problema ao carregar 3 combobox numa pagina, só me aparece a primeira e a ultima como mostra a imagem a baixo.

wsTmqI5.png

<!--combobox turma-->
<label for="">1.11 Turma</label>
<select name="turma">
<option>Selecione...</option>

<?php
require 'ligacao.php';
$query = mysql_query("SELECT * FROM turmas");

while($turma = mysql_fetch_array($query)) { ?>
<option value="<?php echo $turma['ID_turma'] ?>"><?php echo $turma['Nome'] ?></option>
<?php }?>



<!--combobox disciplina-->
<label for="">1.12 Disciplina</label>
<select name="disc">
<option>Selecione...</option>

<?php
require 'ligacao.php';
$query = mysql_query("SELECT * FROM disciplinas");

while($disc = mysql_fetch_array($query)) { ?>
<option value="<?php echo $disc['ID_disc'] ?>"><?php echo $disc['Nome'] ?></option>
<?php } ?>




<!--combobox modulo-->
<label for="">1.13 Modulo</label>
<select name="modulo">
<option>Selecione...</option>

<?php
require 'ligacao.php';
$query = mysql_query("SELECT * FROM modulos");
while($mod = mysql_fetch_array($query)) { ?>
<option value="<?php echo $mod['ID_mod'] ?>"><?php echo $mod['Nome'] ?></option>
<?php }?>

caso seja preciso mostrar o código todo da pagina.

Cumprimentos,

Ricardo Magalhães

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.