i have the following line:
printf("<table WIDTH='75%' border='1'>");
I'm used to using single quotes within a string defined with double quotes. But this produced the error:
Warning: printf(): too few arguments
OK - so I changed it to :
printf("<table WIDTH=75% border=1 >");
same error.
OK - so I change it to :
printf("<table WIDTH="75%" border="1" >");
and I get:
Parse error: parse error, unexpected T_LNUMBER
I must not be thinking of an alternative - can someone explain what's going on?
Jerry