bOnIn Posted July 25, 2011 Report Share Posted July 25, 2011 achei um <select> na net que pega todas as cidades do banco de dados$html.="Você está em: <select class='itp' id='ini_cidades'>";$query = "SELECT * FROM tb_cidades ORDER BY nome";$resultado = mysql_query($query,$GLOBALS['conexao']);while($linha = mysql_fetch_object($resultado)){$html.="<option value='".$linha->nome."'>".$linha->nome."</option>"; }$html.="</select> ";mas eu queria colocar em html e não php como ficaria?? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted July 25, 2011 Report Share Posted July 25, 2011 Você quer utilizar apenas HTML? Você não quer usar PHP, é isso?Se for, não é possível. Você precisará de uma linguagem server side, como o PHP.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 Ricardo T. do Prado Posted July 26, 2011 Report Share Posted July 26, 2011 (edited) separa os código parcero.<?php function PreencheSelect() { $arr = array(); $query = "SELECT * FROM tb_cidades ORDER BY nome"; $resultado = mysql_query($query,$GLOBALS['conexao']); while($linha = mysql_fetch_arrayt($resultado)){ $arr[] = $linha; } return $arr; } depois é só fazer um loop foreach; <body> <select name="my_select> <?php foreach($PreecheSelect() as $rows) : ?> <option value="<?php echo $rows['uf'] ?>"> <?php echo $rows['cidade'] ?> </option> <?php endforeach; ?> </select> </body>Sacou?Abs. Edited July 26, 2011 by Ricardo T. do Prado Quote Link to comment Share on other sites More sharing options...
Question
bOnIn
achei um <select> na net que pega todas as cidades do banco de dados
$html.="Você está em: <select class='itp' id='ini_cidades'>";
$query = "SELECT * FROM tb_cidades ORDER BY nome";
$resultado = mysql_query($query,$GLOBALS['conexao']);
while($linha = mysql_fetch_object($resultado)){
$html.="<option value='".$linha->nome."'>".$linha->nome."</option>";
}
$html.="</select> ";
mas eu queria colocar em html e não php como ficaria??
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.