Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to pass some parameters to my Laravel query Builder but it returns Invalid parameter number Error

$tapuser = "";
if (@Session::get('user_admin_sub') > 0) {
    $params['user_admin_sub'] = intval(Session::get('user_admin_sub'));
    $tapuser = "and notes.user_id = :user_admin_sub";
}
$params['start'] = $request->start;
$params['end'] = $request->end;
$params['userId'] = Auth::id();
$data = [];

$confirmation_call = DB::select("select count(*) as nbr from orders, notes 
    where orders.id = notes.order_id 
    and orders.user_id=:userId and notes.note like '%CC: %'
    and notes.user_id=:userId 
    and (notes.created_at BETWEEN :start AND :end) $tapuser", $params);
question from:https://stackoverflow.com/questions/66051004/invalid-parameter-number-laravel

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
234 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...