Hi there, I have php4.1.1 installed and the wordwrap function doesn't work. Basically, it does nothing. Is this a known issue?
Thx.
wordwrap() separates a string into many lines using the character \n. Therefore, to show it in HTML, you'll need to replace \n by <br>'s. Therefore you have to call wordwrap this way:
wordwrap($str, 75, "<br>");
Diego
Doh! Thanks.
Now, I'll try it with pdflib.
K.