PHP Classes

get_shop_name()

Recommend this page to a friend!

      SQL Data Manager  >  All threads  >  get_shop_name()  >  (Un) Subscribe thread alerts  
Subject:get_shop_name()
Summary:missing get_shop_name()
Messages:2
Author:David
Date:2010-03-20 16:15:43
Update:2010-03-22 10:12:00
 

  1. get_shop_name()   Reply   Report abuse  
Picture of David David - 2010-03-20 16:15:44
Where is the routine get_shop_name() referenced in example_1.php and example_2.php?

  2. Re: get_shop_name()   Reply   Report abuse  
Picture of Paul Gillespie 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