Mega Code Archive
Implementing a Simple Class
data;
}
}
$sc_object = new SimpleClass();
$sc_object->data = "Hello, world! ";
$another_object = new SimpleClass();
$another_object->data = "Goodbye, world! ";
$sc_object->echoMyData();
$another_object->echoMyData();
?>