OOP 101 - quick question.
- by R Bennett
I've used procedural for sometime now and trying to get a better understanding of OOP in Php. Starting at square 1 and I have a quick question ot get this to gel. Many of the basic examples show static values ( $bob-name = "Robert";) when assigning a value,
but I want to pass values... say from a form ( $name = $_POST['name']; )
class Person {
…