Re: [PHP] Infinite Loop Issue

2008-11-07 Thread Andrew Ballard
On Thu, Nov 6, 2008 at 11:59 PM, Jim Lucas [EMAIL PROTECTED] wrote: Kyle Terry wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; What the heck is in $db?

Re: [PHP] Infinite Loop Issue

2008-11-07 Thread Thodoris
I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description, date(release_date) date, issues, priority FROM release_data; $all =

Re: [PHP] Infinite Loop Issue

2008-11-07 Thread Kyle Terry
On Thu, Nov 6, 2008 at 7:18 PM, Eric Butera [EMAIL PROTECTED] wrote: On Thu, Nov 6, 2008 at 5:57 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown [EMAIL PROTECTED]wrote: On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry [EMAIL PROTECTED] wrote:

RE: [PHP] Infinite Loop Issue

2008-11-07 Thread Jay Blanchard
[snip] while($all-fetch()){ $i = 0; $iss_link = explode(', ', $issues); foreach($iss_link as $a){ $row2[$i] = a href=\http://mantisus/view.php?id=$a\; target=\_blank\.$a.'/a'; $i++; } $issues = implode(', ', $row2); echo

Re: [PHP] Infinite Loop Issue

2008-11-07 Thread Thodoris
I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description, date(release_date) date, issues, priority FROM release_data; $all =

[PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description, date(release_date) date, issues, priority FROM release_data; $all =

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Nathan Nobbe
On Thu, Nov 6, 2008 at 1:34 PM, Kyle Terry [EMAIL PROTECTED] wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description,

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Chris
Kyle Terry wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description, date(release_date) date, issues, priority FROM

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Daniel Brown
On Thu, Nov 6, 2008 at 4:34 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: w/e $all is, im guessing $all-fetch() is never returning false (or a value which can be type juggled to a boolean false equiv). if youre code is getting beyond the while loop, then there could be something wrong w/

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
Positive, It's the only function being called in the test script. On Thu, Nov 6, 2008 at 1:40 PM, Daniel Brown [EMAIL PROTECTED] wrote: On Thu, Nov 6, 2008 at 4:34 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: w/e $all is, im guessing $all-fetch() is never returning false (or a value which

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Nathan Nobbe
On Thu, Nov 6, 2008 at 2:49 PM, Kyle Terry [EMAIL PROTECTED] wrote: Positive, It's the only function being called in the test script. so is the code making it past the while w/ the $all-fetch() condition ? it might be helpful to comment-out the body of said while loop and see if script

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Nathan Nobbe
On Thu, Nov 6, 2008 at 3:01 PM, Kyle Terry [EMAIL PROTECTED] wrote: looks like its $all-fetch(); The query runs fine in MySQL... please keep responses on-list for the benefit of others. what type of class is $all an instance of, and what causes the fetch() function to return false (or

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
On Thu, Nov 6, 2008 at 2:47 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: On Thu, Nov 6, 2008 at 3:01 PM, Kyle Terry [EMAIL PROTECTED] wrote: looks like its $all-fetch(); The query runs fine in MySQL... please keep responses on-list for the benefit of others. what type of class is $all an

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Daniel P. Brown
On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry [EMAIL PROTECTED] wrote: Sorry, I was actually having a conversation about that with Daniel. It is an instance of the mysqli class. Yeah, Nathan, keep it down while the grown-ups are talking. -- /Daniel P. Brown http://www.parasane.net/ [EMAIL

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Chris
Kyle Terry wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id, description, date(release_date) date, issues, priority FROM

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Nathan Nobbe
On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown [EMAIL PROTECTED]wrote: On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry [EMAIL PROTECTED] wrote: Sorry, I was actually having a conversation about that with Daniel. It is an instance of the mysqli class. Yeah, Nathan, keep it down while the

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Andrew Ballard
On Thu, Nov 6, 2008 at 5:56 PM, Chris [EMAIL PROTECTED] wrote: Kyle Terry wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; $sql = SELECT release_id,

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Eric Butera
On Thu, Nov 6, 2008 at 5:57 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown [EMAIL PROTECTED]wrote: On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry [EMAIL PROTECTED] wrote: Sorry, I was actually having a conversation about that with Daniel. It is an

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Chris
To get to that point, you are doing a loop of size X where X = the row number being processed. ie row 2 is doing a foreach over 2 entries. row 15 is doing a foreach over 15 entries. row 90 is doing a foreach over 90 entries. That's not QUITE right. The value of $issues will always be set to

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Jim Lucas
Kyle Terry wrote: I believe I'm doing everything right here. It just seems like it doesn't end. The browser just keeps trying to load the page forever... function displayAll(){ global $db; What the heck is in $db? Which SQL class(es) are you using for your DB handler? $sql =