My Java applet previously used param (HTML), example ;-

<applet code="family.class" width=610 height=400> <param name="nodes" value="10"> <!-- 0=unique id (1 based) 1=text 2=parent id 3=first son id (0=none) 4=next brother id (0=none) 5=depth level (0 based) --> <param name="1" value="1|Monica|0|2|0|0"> <param name="2" value="2|Ion|1|0|3|1"> <param name="3" value="3|Mihai|1|6|4|1"> <param name="4" value="4|Filip|1|8|5|1"> <param name="5" value="5|Silvia|1|0|0|1"> <param name="6" value="6|Diana|3|0|7|2"> <param name="7" value="7|Simion|3|0|9|2"> <param name="8" value="8|Alexandru|4|0|0|2"> <param name="9" value="9|Mihaela|3|0|10|2"> <param name="10" value="10|Andrei|3|0|0|2"> </applet>

But recently I got to know that Perl could do a better job than HTML. Perl could even extract data from database and send it to applet.

I am trying to do that, so what change do I have to do in the perl script and java applet

TQ

In reply to Applet to Perl(cgi) by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.