I've just finished an ASCII table design like:
+------+------+
|id |name |
+------+------+
|1 |x |
+------+------+
now I'm trying to color those text. I found some way with PHP image/HTML way. Is there any way to color those text without PHP image create/HTML.
Objective: Color each column's text with same color. eg. all values of id
col with color 'red', name
col with green and so on.
NOTE: It's not a console output nor a HTML page. Just draw with PHP, inspired from here
Please help me.