I have a value stored in $value1 for example. Then, I call value1 in a loop and name it the value $dataval. Here is the code:
$i = 0
while ($dataval = value$i)
{
$i += 1;
}
However, I need that data that is stored in $value1. How can I get this value through $dataval?
Something like $ .= $dataval.....please help