Hello, I have three variables as shown below:
$option1="option1";
$option2="option2";
$option3="option3";
When I use for loop to print those values out I can't get the actual result
for($i=0;$i<4;$i++)
print"\$option".$i;
}
Could anyone please tell me what the problems are?Thanks