Having trouble getting a way to increment a string date by one day.
So it starts off with 30/01/2001 for example.
$linedata[8] = 30/01/2001;
Then I use date parse form format.
$thetime = date_parse_from_format("j/n/Y",$linedata[8]);
The return is in array. Is it possible to increment the date from this array or should i be parsing the date with a different function?