Advanced PHP Tutorials
These tutorials are our advanced tutorials and contain some of the most complicated subjects in PHP. If this is too complicated for you please look at the basic or intermediate tutorials first.
This article describes how to handle files. Including reading both and writing data.
How do you find out when something goes wrong in your PHP script? Logging is the answer!
PHP is quite an efficient programing language, however it can be made even faster by following these techniques and configuration instructions.
Any application usually has variables that change frequently. Instead of changing these values in the code they can be seperated out into a configuration file and only changed there. Which makes better code in the long term. This article shows you how to do this in PHP.
Sessions are very important in PHP as they allow you to store data between page refreshes.
Types in PHP are not defined. This can speed up development but it can also create problems with unexpected behaviour occuring and more!