I'm a Flash (AS2) programmer trying to do the following in PHP:
while (var i=1;i<6;i++){
echo descriptionTextForDay[i]
}
where descriptionTextForDay1 - descriptionTextForDay5 are previously defined strings, not members of an array.
The code above is how I'd have done it in AS2 (except for the echo), but how would you do this in PHP?
Sorry if it's a basic question, but I've passed my eyes through the documentation without finding any answers.