$_SERVER['REQUEST_URI'] = This will return the full path of your directory.
The following example will give you clear idea,
<?php
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo $url;
?>
WebOops blog describes about latest technologies on web and gives more idea about doing web programmings and designs as well. Here It covers and shares all web based programming ideas with practical approach.
<?php
$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo $url;
?>
Hi friends, certainly you have felt when you make WordPress kind web development, WordPress login page can be better if we can customize with our logo and css. Yes, we could customize the wp whatever you like without any plugins.
Today i am gonna show you how to change default wp logo and some css in login page.
If you go to http://YOUR WP PATH/wp-login, by default the page shows like this, to change this read below..

Ok, First we can change logo, by doing that, open your functions.php in your activated theme by using any editor like notepad, notepad++, etc. whatever you use.
Customize WordPress Dashboard according to your needs.
