Fatal error

hi
i am doing a ftp program in php.i want to get the name of files from a ftp server.i got it sometimes when the no: of file is small .but the following error occurs most of the time
Fatal error: Maximum execution time of 30 seconds exceeded in C:\Inetpub\wwwroot\x.php on line 84
[300 byte] By [anissurendran] at [2007-11-19 19:58:23]
# 1 Re: Fatal error
You can change the maximum execution time for php scripts in php.ini

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
blueday54555 at 2007-11-10 3:57:35 >
# 2 Re: Fatal error
Dear blueday54555
i got that .Thank you
anissurendran at 2007-11-10 3:58:43 >