in the member class, inside the first try { } we have
PHP Code:
$set->bindValue(":startRow", $startRow, PDO::PARAM_INT);
If we did use the ($startRow) and ($numRows) directly in the SQL query do we stil have to use this statement? and why?
PHP Code:
$set->bindValue(":startRow", $startRow, PDO::PARAM_INT);
thanks