Results 1 to 4 of 4

Thread: scripting my form

  1. #1
    Join Date
    Oct 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default scripting my form

    I have a contact form at www.maxwealthsystem.com whcih is a .cgi and woild like to change the scripting to .php Is this easily done? Can I add features to the results end of the "Send Form"? Can I change the look of the contact form info that is delieved in the recepient email account?

    Thanks,

    Glycoray

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Posted By glycoray

    I have a contact form at www.maxwealthsystem.com whcih is a .cgi and woild like to change the scripting to .php Is this easily done?
    Yes you can change that into PHP without much difficulty. In your posting you haven't mentioned where you have stored the data from the user. I assume that you are using either files or database. Using PHP you can store your data either in files or in databases.

    Posted By glycoray

    Can I add features to the results end of the "Send Form"?
    It is not clear so that it is difficult to comment about it. Please elaborate what is the meaning of features here?

    Posted By glycoray
    Can I change the look of the contact form info that is delieved in the recepient email account?
    Yes you can change the visual look and feel of the data you are handling

  3. #3
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    check out this page

    I just did it yesterday, my very first contact form ever. It took me about 7 minutes to install and customize. You can change EVERYTHING, from the size and look to the options, choose which are required and which are not, etc etc

    it is all php, and more secure than anything I could find. You can have one contact, multiple BCC or CC contacts or even a drop down selection list of contacts. It also has a GD library image verification so bots can't send info over and over and over again..


    I even stored the files outside my root folder, for added security. All the email addys you add are in one file and not in the HTML on the page, and having the form outside root means no one can browse it and harvest email addresses.

    I like it.

    If you want to see the page I set up you can view it here

    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    .cgi is not any specific scripting language. CGI (Common Gateway Interface) is a standard by which a webserver can use any conforming executable to generate output. Depending on the language (C, for example), it might require a complete rewrite. However, it might be written in a more compatible language such as JSP or ASP, in which case only the portions specific to that language need be edited. It might even be written in PHP already, run via a standalone parser.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •