not sure of correct syntax
Posted: Thu Feb 12, 2004 8:22 am
I am outputting my results to a table and would like to have more than one line of text in a cell. ie the address. Does anyone know what the syntax is I tried:
print '<td>'.$row2['RetailerName'].'</n>';
print .$row2['RetailerAdd1'].'</n>';
print .$row2['RetailerAdd2'].'</n>';
print .$row2['RetailerAdd3'].'</n>';
print .$row2['RetailerTown'].'</n>';
print .$row2['RetailerCounty'].'</n';
print .$row2['PostCode'].'</td>';
but I got a parse error.
should I have something before the .$row2 part like with the '<td>'
any help appreciated
print '<td>'.$row2['RetailerName'].'</n>';
print .$row2['RetailerAdd1'].'</n>';
print .$row2['RetailerAdd2'].'</n>';
print .$row2['RetailerAdd3'].'</n>';
print .$row2['RetailerTown'].'</n>';
print .$row2['RetailerCounty'].'</n';
print .$row2['PostCode'].'</td>';
but I got a parse error.
should I have something before the .$row2 part like with the '<td>'
any help appreciated