Posted on Dec - 8 - 2011

by DR. RANDY PAUSCH Randolph Frederick “Randy” Pausch (October 23, 1960 – July 25, 2008) was an American professor of computer science and human-computer interaction and design at Carnegie Mellon University (CMU) in Pittsburgh, Pennsylvania. He was a Carnegie Melon [...]

Read More
Posted on Dec - 7 - 2011

I just visited articlesbase.com and found the article that very interested for me. And I deserves to share this. Maybe it could be useful (especially for me). Hehe…! The rel=”canonical” tag has has been around for a while, but there [...]

Read More
Posted on Dec - 3 - 2011

Do you have high traffic on your site/blog? Do you want to bring in money from the traffic? If yes, it is a simple way to do that! Just go to register on link below : All you need is [...]

Read More
Posted on Dec - 2 - 2011

I don’t have idea about an iframe on PHP, it’s just served as another page and interpreted with browser. But you could do something like this : <iframe src="frame-page.php?parent=<?php echo parentPageURL(); ?>"> On inside the iframe (frame-page.php), you can access [...]

Read More
Posted on Nov - 24 - 2011

Here the various ways to get current page (url) with PHP, JavaScript, and WordPress. Use PHP : $current_page_URL = $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]; Where $_SERVER["SERVER_NAME"] will give you the domain name of current page and $_SERVER["REQUEST_URI"] will give you the rest [...]

Read More
Posted on Nov - 17 - 2011

Here’s simple script to make your JavaScript function wait before executing (in milliseconds) : <script type="text/javascript"> function my_function() {     alert("Delayed about 5 seconds"); } function sleep_func() {     setTimeout("my_function()", 5000); } </script> And what you need to [...]

Read More
Posted on Nov - 16 - 2011

The following class is useful to take (download) a picture of a another site and copied to the local computer (server). You only need to specify the url of remote files and local directory that will be used as a [...]

Read More
Posted on Nov - 13 - 2011

Here is a simple script to remove your site from the trap of iframe from other websites. If you are really fed up with it, the script will be very helpful. It’s call “Escape from Iframe Trap“. Step 1 Put [...]

Read More