Hi gang,
When I try the following my data comes out fine!
$row = mysql_fetch_array($result);
print $row["rate"];
But when I try the following to qualify the column name with the table name nothing comes out.
$row = mysql_fetch_array($result);
print $row["vatrates.rate"];
Can anyone tell me how I can quote the table name against a column name please. ( I have a query to do with two tables and they have the same column names!) thanx.
Pryce