New Yahoo Messenger Status Icon using opi.yahoo.com
0
Yahoo Messenger Status Icon For Website with new icons
http://opi.yahoo.com/online?
Copy Paste The Style you need with replacing djGemini to your Yahoo ID.
Enjoy.
Yahoo Messenger Status Icon For Website with new icons
http://opi.yahoo.com/online?
Copy Paste The Style you need with replacing djGemini to your Yahoo ID.
Enjoy.
The new Blogger has a default Post more, Post summary option . So no more need of any widgets to accomplish this (You can see a demo of Read More on this post). To add read more link on your blog simply add this line on EDIT HTML view
<!--more-->
Add the line in between the post parts.
Note: The <!--more--> should be added on HTML edit View Only . If added On composite view it will be displayed as a normal text.
Read more »eg:
<!--more—>
main text of blog
Detailed summary of Blog
The $_SERVER['REMOTE_ADDR'] Usage in PHP will give the IP(ISP provided) address of the User. It is a dynamic IP address provided By Internet service provider to The Client / User.
Suppose on client side the internet connection is shared in a network. We cannot use this method to identify the IP address of the particular user. The users may be sharing a gateway server for the internet access. So if we use the $_SERVER['REMOTE_ADDR'] it will show the ISP provided IPaddress of the gateway computer only. In such cases to get the local IP address of the user behind the proxy we can use
$_SERVER['HTTP_X_FORWARDED_FOR']
This will give the local IP address of the particular client computer in the network.