Hi all,
How do I convert the below to work for MS SQL Server?
My problem is using $limit - creating a pagination system.
$limit = 'LIMIT ' .($pageno - 1) * $rows_per_page .',' .$rows_per_page;
// Perform Query
$query = "SELECT question_ID, question_text ".
"FROM questions ".
"ORDER BY id ".
"DESC ".
"$limit";