Add the following to your apache httpd.conf if you don't have access create an .htaccess within your root directory.
-------- Apache --------
<Location /resume>
ForceType application/x-httpd-php
</Location>
if you are using apache on a WinOS Server you need to add load the following module
LoadModule php4_module
/php/sapi/php4apache.dll
------ .htaccess -------
ForceType application/x-httpd-php
------- resume ---------
Also within your root directory you need to create your resume file without the .php extention.
$URL_ARRAY = explode ("/" , $REQUEST_URI);
$URL_TWO = $URL_ARRAY[2];
select your the user's resume from the URL Array
in this case:
SELECT * FROM $table WHERE username = '$URL_TWO' ");
Doing the above will give your users resumes the following URL:
http://yoursite.com/resume/username
Checkout the following articles:
http://www.phpbuilder.com/columns/tim20000526.php3
http://www.evolt.org/article/Search_Engine_Friendly_URLs_Part_II/17/17171/index.html