Quote:
Originally Posted by Mr Angry
I think I have a php upload script which will handle practically anything you throw at it - interested?
|
Very interested as well in that as well. I'll PM you.
I'm stuck with something that you nice helpful people at Cf may be able to assist with.
I have a database of training courses.
I have a date variable
$date = mysql_result($result,$i,"date");
I have length in days:
$length = mysql_result($result,$i,"length");
I can format date so its in the right order:
$date = date("d/m/y",strtotime($date));
What I cannot seem to work out is to get the end date of the course.
I have tried lots of ways but non seem to work it right.