Author Archives: fabio

Php Curl

If you want to write a sort of php wrapper to include the results of another http(s) request maybe pointing to a totally different site or just different code (mod_perl with HTML::Mason, in my case) into a php based layout, … Continue reading

Posted in Code Examples, PHP | Leave a comment

Understanding Organic SEO

Don’t go foolin’ yourself. Organic SEO is just as much work as any other type of SEO. It’s just a little different method of creating a site optimized for search ranking, without having to implement any new technologies or spend … Continue reading

Posted in SEO | Tagged , , , | Leave a comment

Difference between two dates in php

Here is an example on how to check to difference bewteen two dates in using PHP. <? $now = time(); $week = time()+60*60*24*7; $diff = $week-$now; echo $diff/(60*60*24)." days "; // 7 Days echo $diff/(60*60)." hours "; // 168 hours … Continue reading

Posted in Code Examples, PHP | Leave a comment