While binding variable to my prepared statement PHP reports that the number of parameters do not match !
here is the code:
private $q_setQueue = "update rivr_queues set name='?', description='?' where QueueID='?';";
.
.
.
$stmt = $astdb->prepare($this->q_setQueue);
$stmt->bind_param('sss',$qName,$qDesc,$qID);
number of parameters is three so I think the code is correct.