Category Archives: Usefull PHP

PHP Tutorial : Block certain IP Address

I see this seems to be a very hot subject on the folks searching for php scripts and help. Its not really big deal to block a certain visitor IP Address. It works like : first you need to detect … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , , , , | 5 Comments

PHP Tutorial : Detect visitor country by ip address

Well, well, well, It seems a “global” interests in this php script to detect visitors country, so, I decided to write a guide on how you could get it done. There is a free solution to detect visitors country by … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , | Leave a comment

PHP Tutorial : Password protect page script

Do you have some content which you do not want to show to public? There is a php script which “hides” the content, protecting it with a password and username to access a page. It can be done with MySQL … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , , , , , , , , | 2 Comments

PHP Tutorial : Dynamic titles for different pages

Very usefull when optimizing your website for search engines, this tutorial will show you how to keep in one single page which you will include in all others, the dynamic titles script for different pages. This will help keep your … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , , | Leave a comment

PHP Tutorial : Check the referrer

Simple and short for today, but very popular and searched daily which means it will be usefull for you. Here is the code to get a referrer with php <?php $ref = $_SERVER['HTTP_REFERER']; print $ref; ?>

Posted in Usefull PHP | Tagged , , , , , | 2 Comments

PHP Tutorial : Dynamic pages Switch and Case

Do you want to keep all the content in only one single page to avoid searching and editing and opening tons of files for only one modification? For that, we can do a single php dynamic page which will act … Continue reading

Posted in Usefull PHP | Tagged , , , , , , | 1 Comment

PHP Tutorial : Special Date Script

Today is the last day of the year 2008 and I will write a script to show your visitors a “happy new year” message automatically on tomorrow if you cannot manually add it in that day because of the traveling … Continue reading

Posted in Usefull PHP | Tagged , , | Leave a comment

PHP Tutorial : Simple views counter script

Hi, In this php tutorial you will learn the simple way to build a script which counts how many times a page is viewed. For this, we can use a mysql database table and a simple php script. <?php $pagename … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , , , , | Leave a comment

PHP Tutorial : Tell a friend script

Hi, In this php tutorial I’ll teach you how to create a simple tell a friend script. Basically, it will use what you learned in the send email with a contact form script, but in this case we’ll choose the … Continue reading

Posted in Usefull PHP | Tagged , , , , | 1 Comment