I have a bit of a problem in my PHP programming so I'll get to the deal.
This is the code that's bugging me:
$pageNum = $_GET['page'];
if(!isset($pageNum)) $pageNum=1;
Now, the idea is that instead you have 3 items on your page, trough PHP awesomeness, you have only 2 (from 3), 3rd being on another page, just as you have those page numbers on the bottom.
It constantly says:
Notice: Undefined index: page in C:\xampp2\htdocs\autosalon_db\model Offer.php on line 3
(that one php file)
and the other one says this also:
Notice: Undefined index: stranica in C:\xampp2\htdocs\autosalon_db\index.php on line 10
(another file)
Now anyone can explain to me where I'm going wrong?