Simple, yet complicated question 😉
Do variable variables work when referring to arrays passed by a form?
<input type="text" name="hour['HourStartSun']">
$day = "Sun";
$tmp_var = "hour[\"HourStart" . $day . "\"]";
echo $$tmp_var;
This returns nothing 😕
Is there something as simple as incorrect syntax that I'm missing?