Hi,
Without first knowng what public class variables the class has, how can i display a list of all the variables in that class along with the values?
print_r(new MyClass());
will display the public variables and values, plus some other unwanted entries, but I cannot do anything with them.
I want to be able to create name=value pairs for an HTML GET request using the class variables.
Thanks for reading this.