Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
abc.xls file abc.xls file contain 3 fields say name, age and sex abc.xls file contain data as follows: Xavier 25 M Mary 22 F Result from .xls file will fillup in the following html file. result.html -----------<HTML><HEAD><TITLE> Test </TITLE></HEAD> <BODY> <form method="post" name="test" action="/cgi-bin/readxls.pl"> <input type="Submit" name="Go" value="Go"> </form> </BODY></HTML>
Call test.html file and click on the "Go" button will call a perl program that will read first record (say Xavier, 25, M) from the abc.xls file and fillup the appropriate fields in the result.html and display in the browser. Hope i my questions is clear to all. I am waiting for the great help from the perl experts. Thanks Best Regards, Dan<HTML><HEAD><TITLE> Test </TITLE></HEAD> <BODY> Name: <input type="text" name="name" ><br> Age: <input type="text" name="age" ><br> Name: <input type="text" name="sex" ><br> </BODY></HTML>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: read xls file using Perl program
by meetraz (Hermit) on Dec 16, 2003 at 19:41 UTC | |
|
Re: read xls file using Perl program
by dragonchild (Archbishop) on Dec 17, 2003 at 03:10 UTC | |
|
Re: read xls file using Perl program
by freddo411 (Chaplain) on Dec 16, 2003 at 17:43 UTC | |
by Anonymous Monk on Dec 16, 2003 at 18:17 UTC | |
by freddo411 (Chaplain) on Dec 16, 2003 at 23:06 UTC |