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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Need help

  • 27-05-2000 12:28pm
    #1
    Registered Users, Registered Users 2 Posts: 1,238 ✭✭✭


    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