Finding Length of Curves?

 From:  Michael Gibson
5496.12 In reply to 5496.11 
Yeah it looks like Pilou's one got messed up on his web page.

Because the actual script has some HTML tags in it like <div> </div> those can actually get parsed by your web browser unless they're escaped, like in my message above I put the code into a <code> </code> block so that it would display as plain text and not get interpreted as HTML tags in the forum message.

Pilou - one way to fix it on your web page is for the web page for every < symbol, instead in the HTML write &lt; and for every > symbol, instead in the HTML write &gt;

Those special escape codes &lt; and &gt; (short for "less than" and "greater than") are escape codes that will not make the browser try to make actual HTML tags.

- Michael