Re: [Hampshire] [OT] Can anyone help me with some PHP?

Αρχική Σελίδα

Reply to this message
Συντάκτης: Kevin Haynes
Ημερομηνία:  
Προς: Hampshire LUG Discussion List
Αντικείμενο: 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.

Kevin Haynes