• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Send form data to another page as text

New Here ,
Feb 20, 2021 Feb 20, 2021

Copy link to clipboard

Copied

hello all- i'm updating an old website and they have a sort of self-serve reseravtion system for their ski club. members fill out a reservation form then when submitted, the simple text data shows up on this other page that they can access to see reservations that are already made. It seems like a simple thing to set up but i can't figure out how they did it. i have the new site and form set up in dreamweaver but i can't figure out how to coax the completed form data into another page.

 

here's the old site info:

randolphskiclub.org

reservation page: http://randolphskiclub.org/secure/reservationpage.shtml

data page: http://randolphskiclub.org/secure/reservationout.txt

password: skiRSC2018

 

any help/clues would be greatly appreciated.

 

Views

129

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 20, 2021 Feb 20, 2021

Copy link to clipboard

Copied

When the form is submitted, the action page - http://randolphskiclub.org/secure/reservation.cgi - handles the process. I assume that it enters the data into the text document. 

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 20, 2021 Feb 20, 2021

Copy link to clipboard

Copied

thanks for your response. i'm trying to build that same functionality into the new website. in other words, tell the new form i created to do the same (or similar) thing with the data.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 20, 2021 Feb 20, 2021

Copy link to clipboard

Copied

to be clear, get the new form to similarly send the data to a text file or html page.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 20, 2021 Feb 20, 2021

Copy link to clipboard

Copied

You can set the action page such as

<form action=/secure/reservation.cgi method="POST">

and it will do the same as it does currently.

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 21, 2021 Feb 21, 2021

Copy link to clipboard

Copied

LATEST

I haven't touched Perl / CGI in ages.  A list was published in 2014 of the 5 programming languages marked for death: Perl, Ruby, Visual Basic, Flash and Pascal.

 

PHP was inspired by Perl. Nowadays, PHP is preferred over Perl for web applications.  Since you're rebuilding the site anyway, this might be a good opportunity to upgrade your form processing scripts, too.

https://code-boxx.com/simple-php-reservation-system/

https://www.php.net/

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines