Hi all here are some useful tips for php developers hope you like the post 1. Always try to use PHP core functions and classes Always check out the PHP manual before creating your own function. You can save your time by using php core functions. PHP has very long list of it’s core function. For example there is no need of building an XML parser for RSS feeds; you can take advantage of PHP’s XML parser functions. 2. Always create a configuration file Never scattered you database connection settings on every php file; you can use a configuration file which will make your code more modular and easier to maintain. Just create one database configuration file and include …
↧