I am new
I execute the following PHP code on Localhost.
<?php
$i=1;
while($i<6);
{
echo "The number is " . $i . "<br>" ;
$i++;
}
?>
I get the following error after long time of working,
Fatal error: Maximum execution time of 60 seconds exceeded in /opt/lampp/htdocs/aizaz/index.php on line 10
How to resolve this.
I am running PHP 5 with Apache and MySQL (Lampp server) on ubuntu linux.