Web Application Development - What is Documentation Best Practices

I am building a web based learning application using HTML, PHP, jQuery and MySQL. As my application gets bigger and has more and more interactions, I'm starting to get confused and messy. So, I would like to know what are the best methods for documenting a web application: methodologies, software, etc.

+3
source share
1 answer

Use strict PHPDoc blocks in all of your classes and methods, and then use Reflection to create documentation on the fly.

+5
source

All Articles