Forum Moderators: coopster
here i want to align the structure.
I cant able to use the
because i am not using html
only in the text format it have to be aligned
But I cant use <table> tag becoz i am not using html
It seems you will now.
tableScore .= "".$i." "." ".$jms['subject_name']." ".$usrsectiondata['score'] ." "."15\n";
You might need to go for something like this:
tableScore = "<table>";
tableScore .= "<tr><td>".$i." "."</td><td> ".$jms['subject_name']."</td><td>".$usrsectiondata['score'] ."</td><td>"."15\n"."</td></tr>";
tableScore .= "</table>";
Habtom