How do I merge several variables into a single variable?
I think this demos what I want to do, but this doesn't quite work:
$FDATE = '$YEAR-$MONTH-$DAY';
For example if $YEAR = 2000, $MONTH = 01, and $DAY = 28, I want it to form into 2000-01-28 in $FDATE
Help appreciated, thanks!