There are alternative ways to limit results. You could use php to do just that. The LIMIT clause is a MySQL extension of the SQL language, so that would have to be dropped. But you could fix this in php using:
$result = mysql_query($query);
$num = mysql_num_rows($result);
$start = 10;
$limit = 15;
$i=1;
while($row = mysql_fetch_assoc($result))
{
if($i>=$start && $i< ($start+$limit))
$results[] = $row;
$i++;
}
Then your requested rows are in the $results array.