var a = "
Remember all HTML is enclosed in quotes, even numbers.
So they must be used in the string as below.
write(d+a+"20"+e+g);
write(d+b+"10"+e+f+a+"20"+e+f+b+"10"+e+g);
write(d+a+"20"+e+f+b+"10"+e+f+a+"20"+e+g);
As always we use correct html syntax.
You can add any HTML to you string, not just numbers.
In the following string we've used HTML for the middle td cell.
write(d+a+"20"+e+f+"<td bgcolor=cornflowerblue height=20 width=10></td>"+a+"20"+e+g);
Now that you can add HTML in your Byte strings, you have a lot more control, when some codes are only used once.
|