I have multiple PHP variables in the form
$number1, $number2, $number3 and so on...
I would like to dynamically reference these inside of a loo
This should do it:
echo ${"number{$i}"};
But why not use arrays instead? Having $number[$i] is much more readable...
$number[$i]