Hello,
I'm trying to make a data filter with php and to do so, I want to use a form with 'get' method. Not the problem is, that I get this notice, when I'm trying to refer to any of the $_GET['var']'s.
echo $_GET['kraj'];
Notice: Undefined index: kraj in C:\wamp\www\inc\pages\filtr.php on line 23
And here is the URL code:
What I think may be the problem is .htaccess file, that rewrites the URL's to pretty ones.
Here is an example of my .htaccess:
RewriteEngine on
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?detail1=$1&detail2=$2&detail3=$3 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?detail1=$1&detail2=$2 [L]
RewriteRule ^([^/\.]+)/?$ index.php?detail1=$1 [L]
Is it possible to refer to $_GET[''] after the '?' simbol with those rules? If not, how can I fix it, so it can work.
Thanks, Mike