Archive for June, 2008
-
Jun 26, 2008
7 CommentsConfiguring TinyMCE:Simple Setup
Everybody is already familiar with WYSIWYG editor. Before, doing CMS projects I used to use fckeditor, and I always had a problem with its bad design and loading time. Though you can config the editor to just the actions you need. I still felt something was not right about it. And I searched about editors,...
-
Jun 18, 2008
6 CommentsLatitude and Longitude Of a Place in Google Maps Using Zip Code
I have already posted similar post for finding out the latitude and longitude of a place using Google maps, but when I studied the traffic details and found out that when people visit that post, they sometime come with keywords like zipcode+latitude and longitudes, so I thought it would be better to them to post...
-
Jun 17, 2008
1 CommentChecking if the domain is registered or not ?
On doing one of my project, I came across this situation when I need to find out whether the domain name supplied by the user is available or not? I then came up with a solution, here’s is what I did. But before that let me explain somethings. There is something called WHOIS LOOKUP. WHOIS...
-
Jun 11, 2008
4 CommentsHow To Generate Thumbnail of HTML Pages
I was just adding my site on Alexa and in some minutes Alexa generated a thumbnail of my html site. And again it was same with blog catelog. So I thought is there any PHP code that crawled the site and generates its image thumb? After a lots of research I came out with these....
-
Jun 08, 2008
No CommentsMy site’s Alexa ranking took 24 million giant leap
I could not stop myself from posting this blog post, because it has been over four weeks I launched this site and its Alexa ranking has improved by 24 million in three days interval. As I first started it was around 29 Million. After a week it went to 25 million figure, it was 25,214,769...
-
Jun 08, 2008
5 CommentsCalculating the difference between timestamps in PHP
Most of us, programmer have conditions of calculating the difference between timestamps, i.e the difference between now and the timestamp from mysql result. The logic for this is pretty simple. Just convert the two timestamps to Unix time format and take the difference between the two. Next convert the difference into corresponding days,hour,minutes or in...