Possible Duplicate:
Do PHP array keys need to we wrapped in quotes?
Is it okay to use array[key] in PHP?
This is the code I am running and I am wondering whether I should quote the word message with single quotes like the second line of code in this post. Which is best practice?
$post = array('message' => $result[message]);
Or this?
$post = array('message' => $result['message']);