Hi there,
I am wondering how I go about altering many of the attributes in a table that's nested in a while loop.
I can change some of the attributes of the row, such as width etc, but I want to be able to change the border style etc, which I can't seem to figure out.
The code looks like this...
echo "
<TR>
<TD width=75><a href= 'masterdetails.php?id={$row['ID']}''><img src=upload_images/{$row['photo']} width=150 height=125 /></a></TD>
<TD width=300 align=left >{$row['username']}<p>{$row['age']}<p>{$row['location']}</TD>
<TD width=300>Interests<p>{$row['interest1']}<p>{$row['interest2']}<p>{$row['interest3']}</TD>
</TR>";
Do you know if I can attach a style sheet to a cell in the above code? (i'm not too experienced with CSS)
I seem to be limited to what I can amend in these cells because they're within the PHP tags.
Any help would be appreciated!
Cheers,