How would you include a percent sign in your code and not have php freak out on it?
ie
printf ("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
See printf in the manual... you could always use print instead - as you are not returning a specifically formatted string.,..
well by using the right statement, in your case print not printf
print ("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
reg kevin
Hey thanks works great.
G