I think my brain is fried from working too much.
All I need to do it add to an array value, but I can't seem to think how. I know this is something really simple.
$blah = array('text' => 'Some Text');
So I just want to add to 'text' so it's 'Some Text and some more text' if a certain condition is met.
ala:
if (condition == this) {
//add this text to array text
$blah[text] = 'and some more text';
}
Think I need some sleep.