-
Recent Posts
Recent Comments
- caroline on Contact Me
Archives
Categories
Meta
Category Archives: Code Examples
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
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