Hi all!
Don't know how to do this and need your help.
If I have a start date and end date like so...
$start = "2011-05-23";
$end = "2011-06-05";
And I have an array which holds the month and year like so....
$array = array("Apr 11","May 11","June 11");
I print the key values of the array which in this case would be 0,1,2 to a chart to create the steps for the months. I now need to know how long the bars for the chart would be. So in this case the start date would be something like 1.7 steps in length and the end date would be somewhere around 2.2. Does this make any sense. Please help.
Tracy