Hi There,
I've got this bit of code like this:
if ("name"&&$i){
print "How are you?"
}
I'm trying to figure out how I can add text infront of a variable for PHP. I'm placing this code within a loop. So, the if evaluation would be something like:
if (name0)
if (name1)
if (name2)
if (name3)
and so on, until i hit the limit of my loop. How can I do this simple thing? Thanks for your help.
Arie