PDA

View Full Version : PHP code Quesiton


Hostboard
12-13-2019, 11:07 PM
I am trying to change the "Some Text Here" and have it colorized but I am not sure how it is done in this case. Anyone?



print_table_start();
print_table_header('Some Text Here', 2);

Dave
12-14-2019, 05:49 AM
print_table_header('<span style="color: red;">Some Text Here</span>', 2);

Hostboard
12-14-2019, 12:42 PM
Thank you for taking the time to reply :)