Re: [PHP-DB] Retreive data from multiple columns by ['tablename.colname']

2003-10-16 Thread dpgirago
Hi Erik, I think you can use ** $line['cases.id'] ** if you individually identify each column selected, rather than using the * symbol. David Erik Björling <[EMAIL PROTECTED]> 10/16/2003 10:57 AM To: [EMAIL PROTECTED] cc: Subject: [PHP-DB] Retreive data from

Re: [PHP-DB] Retreive data from multiple columns by ['tablename.colname']

2003-10-16 Thread John W. Holmes
Erik Björling wrote: Hi, I use a query with multiple tables: SELECT * FROM cases,status,prio where cases.statusid=status.id && . I retreive the data into my variable $line like this. while ($line = mysql_fetch_array($result)) {. How can I retreive data from $line without using the index v

[PHP-DB] Retreive data from multiple columns by ['tablename.colname']

2003-10-16 Thread Erik Björling
Hi, I use a query with multiple tables: SELECT * FROM cases,status,prio where cases.statusid=status.id && . I retreive the data into my variable $line like this. while ($line = mysql_fetch_array($result)) {. How can I retreive data from $line without using the index value as integers for