Author: Kevin Haynes Date: To: Hampshire LUG Discussion List Subject: Re: [Hampshire] [OT] Can anyone help me with some PHP?
On Saturday 21 April 2007, John Paul Wallington wrote: > $employees[0] = _('None');
Not sure exactly what you are doing out of context. The _('None') is being
interpreted as a function because of the (). If you are assigning the
value 'None' to an array element then a simple $employees[0] = 'None' will
do.