Advertisement
contatowellington

Untitled

Oct 21st, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <!--/.array banco -->
  2. <?php
  3. // Inclui a conexão
  4. include_once('../Connections/cartografia.php');
  5.  
  6. // Criando a consulta ao Banco de dados
  7. $resultado = mysql_query('SELECT * FROM markers ORDER BY id ASC');
  8.  
  9. while($dados = mysql_fetch_array($resultado)) {
  10.  
  11.  
  12.  
  13.  
  14. echo 'L.marker(['.$dados['lat'].', '.$dados['lng'].'],{icon: '.$dados['type'].'}).bindPopup("teste").addTo(map);<br />';
  15.  
  16. }
  17. ?>
  18. <!--/.array banco -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement