Hi all:
I have gotten into the habit of writing array elements like so:
$array[key] rather than $array['key']
particularly on superglobals $_POST[field] as it seems easier to include them in SELECT statements, etc.
I have read that it is "good form" to use the single quotes. Why is that? Does it really matter? Am I being too sloppy?
Thanks