Forum Moderators: coopster
i wouldn't recommend to use post. you would have to put a form in the page and also make every link a submit button.
so first about the phpsession id. i would use session cookies for this. so your url already would have no session id anymore.
second i would try to get apache mod rewrite. so you can rewrite your url to something like this:
domain.com/article/123456
then you have to define a rewrite rule in apache wich changes the url for internal use to domain.com/article.php?articleid=123456. so there're no bigger changes to do to your script then.
hope this helps.
barn