Hello all. I am trying to alter the background color of table cells programmatically using PHP.
If I have created a table cell with ID="CellID", in Javascript this is done by using:
document.all["CellID"].bgColor="purple"
Is there any equivalent way of doing this in PHP?
Regards
Patrick Lee
(For those who are interested, the reason I want to do this is to model Conway's Game Of Life in php, e.g. see http://www.math.com/students/wonders/life/life.html)