I need to find certain keys in an array created by a MySQL query, once I have that key, I need to append some text to the value that the key is linked to
Ive figured out how to identify the key value with array_key_exists... I just need the code to append text to the associated value of the key
if(array_key_exists("note", $row_dailyNotes))
{
// stuck here
$row_dailyNotes(value) = $row_dailyNotes(value)."text to append"
}