
Paul Gillespie - 2010-03-22 10:12:00 -
In reply to message 1 from David
Hi David,
Where get_shop_name() is mentioned, this is a direct reference to a field on the database.
For example, if you have a table called t_people and it has a field called "email" and a field called "address_line_1" then you can perform the follwoing sql:
select * from t_people
and then access the fields like this:
->get_email()
->get_address_line_1()
Hope this helps,
Paul