Is there a setting in the php.ini file that would cause this to happen:
Using data from mysql_fetch_array($query, MYSQL_ASSOC)
$data[name] fails
but
$data['name'] is okay. (It's the single quotes that work.)
Or perhaps it's something new in a more current release of php I am unaware of because I've been using the first method for quite sometime.
Any ideas?
Thanks!