Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. router.get('/account?login=Admin', function(req, res, next) {
  2.   var post  = {login: req.query.login};
  3.   var query = connection.query('select * from user where ?', post, function (error, results, fields) {
  4.     if (error) throw error;
  5.       res.render('/account?login=Admin', { title: results[0].login });
  6.   });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement