Downloaded a few open source php scripts such as WordPress and Moodle to study the way they structure there code etc. However when looking through both of these scripts I am always unable to find there database queries (select, insert, update)? Why are they so hidden and how do I find them?
Share
They may actually be generated through an ORM layer. Which is an object that generates a query through the object methods.