Any one could help me to set the profile page like in the facebook profile page
Ex: www.facebook.com/username
I want to set the like my website address/username.Is it possible in php.
Any one could help me to set the profile page like in the facebook profile page
Ex: www.facebook.com/username
I want to set the like my website address/username.Is it possible in php.
Use .htaccess, a realy simple ussage could be:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^./(.*)/$ index.php?username=$1 [L]
Than if the person will type http://www.example.com/nobody/
the $_GET['username']
will be filled with nobody
Check out this beginners tutorial on .htaccess