- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
function CompareDates($date1, $date2)
{
$s_date1 = $this->CharToDateFunction($date1);
$s_date2 = $this->CharToDateFunction($date2);
$strSql = "
SELECT
if($s_date1 > $s_date2, 1,
if ($s_date1 < $s_date2, -1,
if ($s_date1 = $s_date2, 0, 'x')
)) as RES
";
$z = $this->Query($strSql, false, "FILE: ".__FILE__."<br> LINE: ".__LINE__);
$zr = $z->Fetch();
return $zr["RES"];
}
mr.The 26.11.2013 16:47 # +1
guest 26.11.2013 19:12 # +1
bormand 26.11.2013 19:44 # +6
DBdev 27.11.2013 16:14 # +1
> по сей день.
...и еще долго будет радовать в будущем.
Lure Of Chaos 27.11.2013 22:05 # +3