Hi All,
I'm having a hard time with multiple variables:
$blah1_int = "something";
$blah2_int = "something";
$blah3_int = "something";
...
for ($i=1;$i<=3;$i++) {
$blah$i_int = "whatever"; // error here
}
With this code I keep getting a unexpected T_VARIABLE on the mentioned error line. I've also tried using many combinations of curly braces but I'm still not having any luck.
How should that assignment look?