I've created this list to keep track of things I would like to see changed in the docs. === Work in progress === I'm currently working on [[http://php.net/tut.php|the tutorial]], because it its current state it really isn't that useful. There is still a lot of work that needs to be done, but progress can be tracked on [[https://github.com/PeeHaa/php-net-tutorial|GitHub]]. Feel free to review / improve it. === todo === * Write tutorial * [[http://www.php.net/manual/en/language.variables.external.php|External variables]], the note about escaping data to safely do data manipulation in databases is not up to standards. * [[http://php.net/manual/en/debugger.php|Debugging]], it would be nice if it would contain some useful information about how to do some basic debugging in PHP applications. * [[http://php.net/manual/en/security.database.sql-injection.php|SQL Injection]], don't even get me started about this one. * [[http://php.net/manual/en/language.variables.scope.php|Variable scoping]], do we really need to promote the use of the `global` keyword or the `$_GLOBALS` superglobal without any warning? * [[http://www.php.net/manual/en/userlandnaming.tips.php|Userland naming]], really nice tips going on here ;-) * [[http://php.net/manual/en/pdostatement.fetch.php|PDOStatement::fetch examples]], make the example better readable when possible.