[snip]
while($all->fetch()){
$i = 0;
$iss_link = explode(', ', $issues);
foreach($iss_link as $a){
$row2[$i] = "http://mantisus/view.php?id=$a\";
target=\"_blank\">".$a.'';
$i++;
}
$issues = implode(', ', $row2);
echo $releas
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
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 i
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 =
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 = $db
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 =
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
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 Dan
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 r
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
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 release_data
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.
--
http://www.parasane.net/
[EMAIL PROTECTED] |
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 c
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
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
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
> va
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/
>
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 release_data
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,
19 matches
Mail list logo