Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
<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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Applet to Perl(cgi)
by BUU (Prior) on Jun 14, 2005 at 17:05 UTC | |
| |
|
Re: Applet to Perl(cgi)
by ikegami (Patriarch) on Jun 14, 2005 at 17:45 UTC | |
|
Re: Applet to Perl(cgi)
by Errto (Vicar) on Jun 15, 2005 at 01:46 UTC | |
by Anonymous Monk on Jun 18, 2005 at 03:35 UTC | |
by Errto (Vicar) on Jun 19, 2005 at 17:38 UTC | |
|
Re: Applet to Perl(cgi)
by Anonymous Monk on Jun 14, 2005 at 17:39 UTC |