Forum Moderators: phranque
But my concern is about data that is being carried in my variables.
In this case, I don't have dynamic pages, but static only. I use variables so my PHP script(s) can pick valuable data about traffic and store it in flat file or database, and write it into a cookie.
So, if I rewrite URI via some code in .htaccess, so my
page.html?var=something
becomes clean
page.html
Will my "something" be lost and my data not written and passed to cookies?
All programming is done in PHP which is either included into .htaccess via php_value auto_prepend_file or it's triggered via php.ini, depending on server configuration.
This means that when my site gets accessed, the data is grabbed from referring URL (things like keywords and domain names) and written into cookies and MySQL or flat file.
Thanks