Guest User

Untitled

a guest
Aug 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. app.post('/editStatusDetailsById',function(req,res){
  2. connection.query('SELECT id, statuscontent, statusbackground, enabledcomment, enabled, FIND_IN_SET(categories), languages from status WHERE id = ?',[req.body.id], function (error, results, fields) {
  3. if (error) throw error;
  4. res.send({
  5. 'status':'28',
  6. 'success': 'true',
  7. 'payload': results,
  8. 'message':'one language is edited'
  9. });
  10. });
  11. });
Add Comment
Please, Sign In to add comment