RE: [PHP-DB] DB Print Columns and Rows

2002-10-24 Thread Hutchins, Richard
Sorry, fixed a syntax error in my original post.

> -Original Message-
> From: Hutchins, Richard [mailto:Richard.Hutchins@;GetingeCastle.com]
> Sent: Thursday, October 24, 2002 10:59 AM
> To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED]
> Subject: RE: [PHP-DB] DB Print Columns and Rows
> 
> 
> Something like this should also work for you.
> 
> 
> 
>  while($row=mysql_fetch_array($sqlResult){
>   $var1=$row["col1"];
>   $var2=$row["col2"]; //etc., etc.
> 
>   echo("".$var1."".$var2."");//this line
corrected
> }
> ?>
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:Tony72284@;aol.com]
> > Sent: Thursday, October 24, 2002 10:55 AM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-DB] DB Print Columns and Rows
> > 
> > 
> > 
> >Hello PHP people. I was wondering if I could get a 
> > question answered?
> > 
> >How would I print a Database Table into a  when 
> > the DB Table 
> > has 4 columns, AND 4 rows.
> > 
> >See I only know how to print one column.
> > 
> 
> -- 
> 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] DB Print Columns and Rows

2002-10-24 Thread Hutchins, Richard
Something like this should also work for you.



".$var1."".$var2."";
}
?>


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:Tony72284@;aol.com]
> Sent: Thursday, October 24, 2002 10:55 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-DB] DB Print Columns and Rows
> 
> 
> 
>Hello PHP people. I was wondering if I could get a 
> question answered?
> 
>How would I print a Database Table into a  when 
> the DB Table 
> has 4 columns, AND 4 rows.
> 
>See I only know how to print one column.
> 

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




RE: [PHP-DB] DB Print Columns and Rows

2002-10-24 Thread joakim . andersson
> 
>Hello PHP people. I was wondering if I could get a 
> question answered?
> 
>How would I print a Database Table into a  when 
> the DB Table 
> has 4 columns, AND 4 rows.
> 
>See I only know how to print one column.

";
while($row = mysql_fetch_array($result));
{
echo $separator";
echo "" . $row[0] . "";
echo "" . $row[1] . "";
echo "" . $row[2] . "";
echo "" . $row[3] . "";
$separator = "";
}
echo "";
?>

Regards
Joakim

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




[PHP-DB] DB Print Columns and Rows

2002-10-24 Thread Tony72284

   Hello PHP people. I was wondering if I could get a question answered?

   How would I print a Database Table into a  when the DB Table 
has 4 columns, AND 4 rows.

   See I only know how to print one column.