i have written a code in .htaccess
RewriteEngine on
RewriteRule ^category-search/(.*)$ category-search.php?cat_id=$1
and my current URL is
www.mydomain.com/category-search/=NA==
Last values (=NA==) is encoded in base64_encode. But when i m trying to fetch this values in php like...
$val=mysql_real_escape_string(base64_decode($_REQUEST['cat_id']));
I am getting $val equal to nothing. What is error behind this ?
When i was not rewrite in htaccess this was working well.