I\'m trying to make a PHP (5) object that can iterate through its properties, building an SQL query based only on its public properties, not its private ones.
As this pa
You can use an array to store public properties, add some wrapper method and use array to insert data to SQL.