MyBB Community Forums

Full Version: Learn PHP?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know of any good PHP tutorials? Also, what does something like:

{$variable -> something}

mean?
$variable->something means $variable is an object and something is a variable or function of that object. objects are pointers to classes.
Ahh. SorryI posted it in the wrong place, I didnt see this section....

And thanks.

Is "something" supposed to be the class and "variable" the object?
something is like: $something = "something"; and $variable is the object, like $variable = new someClass;