Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Need help

  • 27-05-2000 01:28PM
    #1
    Registered Users, Registered Users 2, Paid Member Posts: 1,239 ✭✭✭


    I need a CGI that will take what someone has put in a form and genaraite a web page with some of the info from the form. not sure what is the best way to do it ?

    Coyote


Comments

  • Closed Accounts Posts: 202 ✭✭Karla


    I'd recommend either Perl or PHP. If you don't know any programming though you could do a search on some CGI archive for what your looking for.



  • Registered Users, Registered Users 2 Posts: 2,372 ✭✭✭Illkillya


    http://www.cgi-resources.com/
    theres loads of them here.


  • Closed Accounts Posts: 6,601 ✭✭✭Kali


    if your server supports php (and about 70% of apache servers have mod_php installed last i read) then this should work:

    in your form page:

    <FORM NAME="doname" METHOD="post" action="control.php">
    <INPUT TYPE="text" NAME="first_name" SIZE="32" MAXSIZE="32">

    and then in control.php or any subsequent pages included by control.php you can reference your form variable by just using $first_name within php tags:

    <P>Hello <?php echo $first_name; ?>



    http://www.filmsoc.com


Advertisement