i know i should know this but for the life of me i forgot it.
what i want to do is within my loop. I want a single variable that has multiple info in it that can be separated by a ,
ex:
loop one {
$store = "fieldone='$fieldone'";
}
loop two {
$store = "fieldtwo='$fieldtwo'";
}
loop three {
$store = "fieldthree='$fieldthree'";
}
echo $store;
//result: fieldone='$fieldone', fieldtwo='$fieldtwo', fieldthree='$fieldthree'
thanks in advance