Maybe I need a sleep, but I can't find this
I have
(int)$views = (int)$page['views'] + 1;
Where $page['views'] is a smallint from the database.
Above aint working because I get instead of 1+1 = 2 and 2+1=3
1+1 = 9 and 9+1 = 18 (with steps of 9)
Someone an (simple 🙂 idea??