Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
C'était pas vraiment un while mais un forEach, je cherchais quelque chose de similaire mais j'ai trouvéVous devez être inscrit pour voir les liens ! Inscrivez-vous ou connectez-vous ici.![]()
database.query("SELECT * FROM solutions", function (err, result, fields) {
if (err) throw err;
var data = [];
Object.keys(result).forEach(function(key) {
data.push(result[key]);
});
// Affichage de la page
res.render('index', {
// Paramètres à envoyer
username: sess.username,
mobile: req.SmartPhone.isAny(),
page_id: 'index',
data: data
});
});