Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Need help

Options
  • 27-05-2000 1:28pm
    #1
    Registered Users Posts: 1,234 ✭✭✭


    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 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