Posts Tagged ‘application’

Web applications have allowed the internet to flourish and expand to great lengths. The ability of various applications and service providers to integrate is proving to be critical in the evolution of internet and web application software.

Which web/PHP framework or platform is right for me?

There are a variety of web frameworks out there. Some are called “Platforms”, and are usually more complex. Here are a few examples:

  • CodeIgniter
  • Zend Framework
  • Joomla
  • Plone
  • Drupal
  • CakePHP
  • Yii Framework
  • Symfony
  • PHP Nuke

So which one is right for me? (more…)

PHP: error reporting and display settings for my web application

PHP error reporting can be simple or difficult depending upon your application. Many sites and applications change the settings, either via the php.ini file, an .htaccess file, or directly in the PHP code. In fact, setting the values directly in the PHP code of your application is probably the most common method.

So which settings are you actually supposed to change? Try these for starters:

  • error_reporting
  • display_errors
  • log_errors

The following example contains the syntax:

ini_set('error_reporting', E_ALL & ~E_NOTICE);
ini_set('display_errors', 0);
ini_set('log_errors', 1);

(more…)