How to compare dates in PHP
How to actually compare 2 dates in PHP with each other? The question sounds easier than it is.  The first thought that usually comes is the following. We store both dates as strings and compare them.
Preliminary
<?php
$date1 = "2012-1-12";
$date2 = "2011-10-12";
if ($date1 > $date2)
 echo "$date1 is newer than $date2";
else
 echo "$date1 is older than $date2";
?>
Output:
2012-1-12 is newer than 2011-10-12
At first glance this seems to be a workable solution. But what if the two data is in a different format?
<?php
$date1 = "12-1-12";
$date2 = "2011-10-12";
if ($date1 > $date2)
 echo "$date1 is newer than $date2";
else
 echo "$date1 is older than $date2";
?>
Output:
12-1-12 is older than 2011-10-12
Now the date in 2012 is declared to be older than the date in 2011, which is of course wrong. However, from PHP’s point of view, this behavior is correct, because two strings were compared […]
																			
Among the first 1000 commenters here on the blog, I will give away 10 brand-new iPhone 5S *. To enter the contest you have only two thing to do. Write a comment below this article and like my Facebook page. In the next hours I also will post two more tasks on Facebook which will raise your chance to win one of the iPhones. The first task will be: “Like this, if you ever had a cold.” and finally the second upcoming task will be a survey with the following question: “If you are a men, like this – if you are a woman share this”. And always stay tuned because next month I will give away even 100 MacBook Pros*. And so it goes with the social media, am I right?
Today I want to present you one of my larger craft projects. This time it is not just about software, but also about the associated hardware. What is it? A web radio!
Today I want to show you how to create a blog article on Blogger.com/Blogspot.com with C#. For this you need first of all the Google.GData.Client.dll, which you can find inside the Google .Net API package.
Today there is again an article on Android. More specifically, it’s about how you can run Android and Ubuntu (Linux) in parallel on your smartphone or tablet. Although I had already blogged about it before, but today I want to explain the whole setup process, step-by-step (using a slightly different method).