|
Posted by Richard Levasseur on 11/05/59 11:41
Once you output the data to the browser, you can't access it using PHP.
If you want to change the table after its been outputted, use
javascript (and ask in the appropriate group)
If you are storing the table in an array, then to access a specific
cell you would just do:
$var = $table_data[2][1]; // this accesses row 3, column 2 (because
zero is the starting row or column)
Navigation:
[Reply to this message]
|