Al intentar usar como parametro recibido por un "$_REQUEST" en LIMIT, me da error de syntaxis.
El script es el siguiente:
...
Código PHP:
$offset = $_REQUEST['offset'];
$query="SELECT movie_name, movie_year
FROM movie
ORDER BY movie_name
LIMIT $offset,1";
*ERROR: "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1' ".
Espero que puedan ayudarme, gracias!.
La variable que llamaba en el LIMIT no era la misma que recibia del REQUEST LOL!! "offest != offset" 

