23.04.2017, 20:19
EDITED:NVM ANSWERD ABOVE
PHP код:
if(cookies < 1 && cookies > 100)
/*this will return nothing ! there is no number more than 100 and less than 1*/
// use this method instead
if(cookies < 1 || cookies > 100)
/*
&& >> and
|| >> or
*/

