Posted an issue im having in the PHP section before realising im probably having the problems due to my lack of knowledge about the .htaccess file.
PHP Code:
php_flag register_globals on
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*).*$ analyse.php?value=$1
Thats what im currently using, and it wasnt until last night that i realised that i need something to 'capture' the {QUERY_STRING} data too, and i really havent got a clue how to achieve that.
Im currently using the above to allow virtual folders, analyse $value and display a specific page using the data given, however I hadnt noticed that any variables in the url were basically being destroyed/ignored because of how the page is being processed. The apache pages ive found via google have left me non the wiser on the matter, probably because i dont fully understand it, but i havent seen an example where they've used both, and im pretty sure thats what i need.
example:
http://www.mydomain.com/users/
http://www.mydomain.com/users/paulc2k
http://www.mydomain.com/users/paulc2k?foo=bar
At the moment the top 2 work, but if i look for $foo then its empty, its been left behind, and i need to hold onto that data but i dont know how i'd incorporate that into the htaccess file.
So i have 2 questions...
1) What is it that i'd need to add to get this to work
2) Is there anywhere which explains all this to someone who's attempted to understand it but always ends up like

the sites ive found on google seem to talk to the visitor like they understand it, i havent found anywhere which talks to me like im a dummy, real entry level understanding but goes beyond entry level aspects, cos thats pretty much my situation right now