Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. app.get('/noticias',function(req , res){
  2.  
  3. var mysql = require('mysql');
  4. var connection = mysql.createConnection({
  5. host :'localhost',
  6. user:'root',
  7. pass:'',
  8. database:'portal_noticias'
  9. });
  10.  
  11. connection.query('select * from noticias', function(error , result){
  12. // retorna o resultado para view
  13. res.render('noticias/noticias',{noticia : result});
  14.  
  15. });
  16.  
  17. </tr>
  18.  
  19. <% for(var i=0;i<noticia.lenght;i++){ %>
  20. <%= noticia[i].id_noticias %> - <%= noticia[i].id_noticias %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement