Я проверял затронутые_строки, но в моей модели возникла такая ошибка. код моей модели ниже
namespace App\Models;
use \CodeIgniter\Model;
class ContactModel extends Model {
public function saveData($data)
{
$db= \Config\Database::connect();
$builder = $db->table('message');
$res = $builder->insert($data);
if ($res->connID->affected_rows>=1)
{
return true;
}
else
{
return false;
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... id-on-bool
Мобильная версия