警告:mysqli_num_rows()期望参数1为mysqli_result,在/storage/ssd5/324/8807324/public_html/login.php第17行给出的布尔值
警告:无法修改标头信息-已在/storage/ssd5/324/8807324/public_html/login.phpon中发送的标头(输出始于/storage/ssd5/324/8807324/public_html/login.php:17)第24行
我正在做一个数据库,以防我使用php连接到我的网站。但是,我正在对此进行编译,却遇到了这两个错误(我尚处于创建阶段,代码尚不完整)。
我的密码
db.transaction(trx => {
trx.insert({hash, email, joined})
.into('auth')
.returning('userid')
.then(userid => {
return trx('users')
.returning('*')
.insert({
name,
id: userid[0]
})
.then(user => {
req.session.userId = user[0].id
// also tried...
// req.session.userId = userid
res.json(user[0])
})
})
.then(trx.commit)
.catch(trx.rollback)