I have two values in an array that I want to have show up in a string variable that I am building. Theses values are dynamic and are subject to change, so I want to be able to build the string straight from the array. I thought I was on the right track but the values are not showing up.
My Code:
$range = "WHERE transdate >= \"{$halfway['startdate']}\" AND transdate <= \"{$halfway['enddate']}\"";
The output:
WHERE transdate >= "" AND transdate <= ""