in reply to Re^5: Perl/CGI web page showing data by portions
in thread Perl/CGI web page showing data by portions

As I told I am not an expert. So, if possible, where can I read about creating text boxes and filling them out using perl/CGI
  • Comment on Re^6: Perl/CGI web page showing data by portions

Replies are listed 'Best First'.
Re^7: Perl/CGI web page showing data by portions
by Gangabass (Vicar) on Dec 09, 2007 at 11:17 UTC

    Read CGI.pm documentation. It's all you need.

    Also how about showing next chunk of data via Javascript? For example you set Javascript variable (array?) with whole data. After that you can show only chunk of data (next array element) in your text box without page reload.

    Another way is to store current part number in cookies and when someone request page you just read cookie and set content of your text box to cookie part number plus one.