dicho esto el query es el siguiente:
Código PHP :
$query_GetMovies = sprintf("SELECT * FROM z_movie WHERE date_format(release,'%Y') = '$year' ORDER BY id DESC LIMIT 0,20");
Pero me salta el siguiente error:
Warning: sprintf(): Too few arguments in /public_html/zeriez/peliculas.php on line 14
Query was empty
y si le quito el "%" me salta el siguiente 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 'release,'Y') = '2015' ORDER BY id DESC LIMIT 0,20' at line 1
Dicho esto como puedo consultar solamente el año para obtener bien los resultados?