|
is it just not returning anything? erorrs?
this may be a long shot, .. but you don't need single quotes around a parameter of an array if it is a number:
$mod_date = $row[0];
quotes might be forcing it to think '0' is a string in the results and not a number .. try taking those out.
just a thought.
|