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:
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
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($
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
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
5 matches
Mail list logo