Re: [PHP] Maybe a silly question

2003-10-10 Thread Tom Ray [Lists]
thanks, now that I know what it's for I know where to find it on php.net Ryan Thompson wrote: It's for classes. A site called http://www.php.net has some great documentation on it. $object->property (or function whatever the case may be) On Friday 10 October 2003 01:57, Tom Ray [Lists] wrote:

Re: [PHP] Maybe a silly question

2003-10-10 Thread Ryan Thompson
It's for classes. A site called http://www.php.net has some great documentation on it. $object->property (or function whatever the case may be) On Friday 10 October 2003 01:57, Tom Ray [Lists] wrote: > I'm wondering if someone can explain something for me. I've never used > this before but have s

RE: [PHP] Maybe a silly question

2003-10-09 Thread Andrew Whyte
It's commonly seen in OOP (Object Oriented Programming) and allows you access to an objects data by name of the entity within the structure. I find it really useful for mysql/php work. $result = mysql_query("SELECT * From Personal_Details WHERE USER_ID='12345'") ; $data = mysql_fetch_object($

RE: [PHP] Maybe a silly question

2003-10-09 Thread Martin Towell
y, 10 October 2003 3:57 PM To: [EMAIL PROTECTED] Subject: [PHP] Maybe a silly question I'm wondering if someone can explain something for me. I've never used this before but have seen it used in numerous sets of coding. What does the -> do? I see stuff like $test=$test->test_url = &quo

[PHP] Maybe a silly question

2003-10-09 Thread Tom Ray [Lists]
I'm wondering if someone can explain something for me. I've never used this before but have seen it used in numerous sets of coding. What does the -> do? I see stuff like $test=$test->test_url = "Something"; $test1=$test->test_this = "Something Else"; Is it some sort of array function? I'm just