Database error: Invalid SQL:
create temporary table tmp_izdanja
select
SQL_CALC_FOUND_ROWS
izdanje_id,
naziv_hr,
naziv_en,
opis_hr,
opis_en,
url,
datoteka_hr,
datoteka_en,
datum,
date_format(datum, '%d.%m.%Y') as datum_format,
aktivno,
korisnik_id
from
izdanja
where
aktivno = '1' and
kategorija_id = 'novosti' and
naziv_hr != ''
order by
datum DESC
limit
<,
10
MySQL Error: 1064 (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 '<,
10' at line 25)
Session halted.