Pisek wrote: > My problem is that when i enter my web page there is written " > Notice: Undefined variable: i in ....."
You can define all your variables (e.g. $i="") before you use them, or you can change the error_reporting setting in php.ini so that it doesn't report notices: error_reporting = E_ALL & ~E_NOTICE Also have a look at the display_errors and log_errors settings. Regards... Michael