Alright I just got some URL Rewriting working on this site I'm working on. IT is .htaccess stuf fon apache yeah...Just incase you didn't know. Well Anyways I have a user area that goes to /Users/<username>/ If the username matches the one in the URL then it displays a form that allows the user to edit his/her information. When the user submits the form it reloads the page with a check if the submit button has been hit (which is done through $POST). The only problem is when the form is submitted to update any information nothing happens. It works if I use the original file name (userprofile.php?username=<username>) but not with the new url. It is as if the $POST data isn't being transferred over...I've tried changing the form action to /Users/<username>/ and among a few other things. Anyone know any solutions to this problem?