I have the following:
$textq1 = 'text';
$textq2 = 'more text';
I have a loop:
for ($i = 1; $i <= 70; $i++) {
echo "<div>". $textq1." ";
}
Now....what I'd like to do is, within the loop have the 1
part of the $textq1
be the value of $i
.
Is that possible?