Re: [PHP] [php] while loop failure

2009-04-06 Thread Virgilio Quilario
> setting: > > max_execution_time = -1     ; Maximum execution time of each script, in > seconds > max_input_time = -1    ; Maximum amount of time each script may spend > parsing request data > ;max_input_nesting_level = 64 ; Maximum input variable nesting level > memory_limit = 2036M      ; Maximu

Re: [PHP] [php] while loop failure

2009-04-06 Thread Virgilio Quilario
> Does any one knows why while loop below ends after few loops when it meant > to keep in loop? > > File name: while_loop_script.php > > define('run', 0); > define('START', 10); > > while(START >run){ > > $ch = curl_init("mydomain/update_script.php?action=run"); > curl_exec($ch); > curl_close($ch);

Re: [PHP] [php] while loop failure

2009-04-06 Thread Andrew Williams
o.in | Cell: +91 94033 66714 | Tel: +91 (0832) >> 30 79014 >> Innovation in software product design, development and delivery- >> www.persistentsys.com >> >> >> >> >> -Original Message- >> From: Andrew Williams [mailto:andrew4willi...@gmail

Re: [PHP] [php] while loop failure

2009-04-06 Thread Andrew Williams
ew Williams [mailto:andrew4willi...@gmail.com] > Sent: Monday, April 06, 2009 3:51 PM > To: php-general@lists.php.net > Subject: [PHP] [php] while loop failure > > Does any one knows why while loop below ends after few loops when it meant > to keep in loop? > > File n

RE: [PHP] [php] while loop failure

2009-04-06 Thread Chetan Rane
Innovation in software product design, development and delivery- www.persistentsys.com -Original Message- From: Andrew Williams [mailto:andrew4willi...@gmail.com] Sent: Monday, April 06, 2009 3:51 PM To: php-general@lists.php.net Subject: [PHP] [php] while loop failure Does any one knows why

[PHP] [php] while loop failure

2009-04-06 Thread Andrew Williams
Does any one knows why while loop below ends after few loops when it meant to keep in loop? File name: while_loop_script.php define('run', 0); define('START', 10); while(START >run){ $ch = curl_init("mydomain/update_script.php?action=run"); curl_exec($ch); curl_close($ch); } using php.exe to