Is there a tool that can enable me to create php classes from a mysql model or sql script that has the schema ?
This is so that instead of having to type out each class and then list all properties(variables), the tool would simply use the database model to generate the classes based on tables
e.g.
classname {
var varname;
var varname2;
etc
}
And also if it could generate standard functions for create, update, delete, select - based on the fields of the given table.
But the first part alone is enough to aid in speeding up development.
Thanks