Re: [PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread John W. Holmes
Dillon, John wrote:
..but even if I can get the names and number of fields during 'run-time',
how do I make the following statement applicable to a variable number of
fields:
while(list($a,$b...)= mysql_fetch_array($result))

or is there another way to extract which would work?
$num_fields = mysql_num_fields($result);
for($x=0;$x<$num_fields;$x++)
{ $field[$x] = mysql_field_name($result,$x); }
Now $field is an array full of your column names. Adapt to your needs.

--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

PHP|Architect: A magazine for PHP Professionals – www.phparch.com





--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread Dillon, John
OK, please ignore, I believe I've found the answer in the manual notes:

$query="your SQL";
$result=mysql_query($query) or die("Query ($query) sucks!");
$fields=mysql_num_fields($result);

echo "\n";
for ($i=0; $i < mysql_num_fields($result); $i++) //Table Header
{ print "".mysql_field_name($result, $i).""; }
echo "\n";
while ($row = mysql_fetch_row($result)) { //Table body
echo "";
for ($f=0; $f < $fields; $f++) {
echo "$row[$f]"; }
echo "\n";}
echo "
http://www.php.net/manual/en/function.mysql-num-fields.php

-Original Message-
From: Dillon, John [mailto:[EMAIL PROTECTED]
Sent: 14 August 2003 17:05
To: [EMAIL PROTECTED]
Subject: RE: [PHP-DB] Extracting result - unknown number of fields


..but even if I can get the names and number of fields during 'run-time',
how do I make the following statement applicable to a variable number of
fields:

while(list($a,$b...)= mysql_fetch_array($result))

or is there another way to extract which would work?

John

-Original Message-
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED]
Sent: 14 August 2003 16:29
To: Dillon, John; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Extracting result - unknown number of fields


From: "Dillon, John" <[EMAIL PROTECTED]>

> While doing a cross tabulation, I've got a query which gives me a variable
> number of fields:

Maybe mysql_num_fields() and mysql_field_name() will be of use, here? Check
the manual..

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


   http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any,
are confidential. If you are not the named recipient please notify the
sender and immediately delete it. You may not disseminate, distribute, or
forward this e-mail message or disclose its contents to anybody else.
Copyright and any other intellectual property rights in its contents are the
sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free.
The sender therefore does not accept liability for any errors or omissions
in the contents of this message which arise as a result of e-mail
transmission.  If verification is required please request a hard-copy
version.
 Although we routinely screen for viruses, addressees should check this
e-mail and any attachments for viruses. We make no representation or
warranty as to the absence of viruses in this e-mail or any attachments.
Please note that to ensure regulatory compliance and for the protection of
our customers and business, we may monitor and read e-mails sent to and from
our server(s). 

For further important information, please read the  Important Legal
Information and Legal Statement at
http://www.cantor.com/legal_information.html


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread John W. Holmes
Dillon, John wrote:

OK, please ignore, I believe I've found the answer in the manual notes:

$query="your SQL";
$result=mysql_query($query) or die("Query ($query) sucks!");
$fields=mysql_num_fields($result);
echo "\n";
for ($i=0; $i < mysql_num_fields($result); $i++) //Table Header
Calculate the value for mysql_num_fields() outside of your for() loop to 
improve effeciency.

$num_fields = mysql_num_fields($result);
for($i=0; $i < $num_fields; $i++) // Table Header
{ print "".mysql_field_name($result, $i).""; }
echo "\n";
while ($row = mysql_fetch_row($result)) { //Table body
echo "";
for ($f=0; $f < $fields; $f++) {
echo "$row[$f]"; }
echo "\n";}
echo "
http://www.php.net/manual/en/function.mysql-num-fields.php
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

PHP|Architect: A magazine for PHP Professionals – www.phparch.com





--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread Dillon, John
While doing a cross tabulation, I've got a query which gives me a variable
number of fields:

$query="SELECT Dept";
$count=count($piv_cos);
for($x=0;$x<$count;$x++){
$query.=", SUM(IF(Co='$piv_cos[$x]',Exps175,0)) AS '$piv_cos[$x]'";
}
$query.=" FROM $tbl1 GROUP BY Dept";
$result=mysql_db_query($db, $query, $connection) or die ("Query9
failed: $query");

...but how do I extract?

$piv_depts=array(); 
for($x=0;$x<$count;$x++){${piv_.$x}=array();}
$piv_dept1=array();
$x=0;
while(list($a,$b)= mysql_fetch_array($result))   //I DON'T KNOW HOW
MANY TO list()
{
$piv_cos[$x]=$a;
for($y=0;$y<$count;$y++){${piv_.$y}[$x]=$b;}
//...
//...
//$piv_dept1[$x]=$b;
$x++;
}

Is there an alternative approach?
Thanks,
John





































   http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any, are 
confidential. If you are not the named recipient please notify the sender and 
immediately delete it. You may not disseminate, distribute, or forward this e-mail 
message or disclose its contents to anybody else. Copyright and any other intellectual 
property rights in its contents are the sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free. The sender 
therefore does not accept liability for any errors or omissions in the contents of 
this message which arise as a result of e-mail transmission.  If verification is 
required please request a hard-copy version.
 Although we routinely screen for viruses, addressees should check this e-mail and 
any attachments for viruses. We make no representation or warranty as to the absence 
of viruses in this e-mail or any attachments. Please note that to ensure regulatory 
compliance and for the protection of our customers and business, we may monitor and 
read e-mails sent to and from our server(s). 

For further important information, please read the  Important Legal Information and 
Legal Statement at http://www.cantor.com/legal_information.html


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread Dillon, John
..but even if I can get the names and number of fields during 'run-time',
how do I make the following statement applicable to a variable number of
fields:

while(list($a,$b...)= mysql_fetch_array($result))

or is there another way to extract which would work?

John

-Original Message-
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED]
Sent: 14 August 2003 16:29
To: Dillon, John; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Extracting result - unknown number of fields


From: "Dillon, John" <[EMAIL PROTECTED]>

> While doing a cross tabulation, I've got a query which gives me a variable
> number of fields:

Maybe mysql_num_fields() and mysql_field_name() will be of use, here? Check
the manual..

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


   http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any, are 
confidential. If you are not the named recipient please notify the sender and 
immediately delete it. You may not disseminate, distribute, or forward this e-mail 
message or disclose its contents to anybody else. Copyright and any other intellectual 
property rights in its contents are the sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free. The sender 
therefore does not accept liability for any errors or omissions in the contents of 
this message which arise as a result of e-mail transmission.  If verification is 
required please request a hard-copy version.
 Although we routinely screen for viruses, addressees should check this e-mail and 
any attachments for viruses. We make no representation or warranty as to the absence 
of viruses in this e-mail or any attachments. Please note that to ensure regulatory 
compliance and for the protection of our customers and business, we may monitor and 
read e-mails sent to and from our server(s). 

For further important information, please read the  Important Legal Information and 
Legal Statement at http://www.cantor.com/legal_information.html


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Extracting result - unknown number of fields

2003-08-14 Thread CPT John W. Holmes
From: "Dillon, John" <[EMAIL PROTECTED]>

> While doing a cross tabulation, I've got a query which gives me a variable
> number of fields:

Maybe mysql_num_fields() and mysql_field_name() will be of use, here? Check
the manual..

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php