BobJanova wrote:
Or you can use "... $s[recid] ... etc" (note no single quotes in the array indexer).
Don't omit quotes. php helpfully thinks a word without $ or quotes is a constant with the string value of the word. Until somebody defines the constant... Imagine you did $arr[version] instead of $arr['version']. It works until somebody define('version','3.1415927Beta'); Leif