+ Reply to Thread
Results 1 to 4 of 4

Thread: How to integrate an inline frame into a form
      
   

  1. #1
    wgreene is offline Sergeant Major
    Join Date
    Sep 2005
    Location
    Missouri
    Posts
    89

    Default How to integrate an inline frame into a form

    Hello,

    I know how to put a form together but what I want to do is include an inline frame with an end user's license agreement, then have the "yes I agree" button required and then forwarded to another page. There is probably a simple way to do this since I don't need anything to post or interact with a script.

    Thanks for any help.

  2. #2
    Join Date
    Oct 2005
    Location
    England, UK
    Posts
    4,208

    Default Re: How to integrate an inline frame into a form

    Make, size and place your frame. Set up the page that will carry the text you want to put into your frame - remember to put you text top left of the page. Then use > insert > form > advanced button as your accept button. Go to it's properties and make it an on click button and set the URL to where you want to navigate to.

    I hope this helps.

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  3. #3
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: How to integrate an inline frame into a form

    It might be easier to just use textarea. Since you want to require the box be checked your going to have to use php for that anyway... so you can just use some code like this

    <textarea><? require_once("eula.html"); ?></textarea>
    <input type="checkbox" name="agree" value="TRUE" />

    <?
    if($_POST['agree'] == "TRUE")
    {
    echo "Terms Agreed To"
    }
    else
    {
    echo "Terms Not Agreed To"
    }
    ?>

    Now I don't use BV.. but I would think you can make a textarea with it... and that you can set the value of that textarea to "<? require_once("eula.html"); ?>"... eula.html being the page with all the terms (or you can just copy and paste the terms as the value)

    Both of these ways will work.. both will acknowledge that your users had the chance to read the EULA... my way just has the visual of a required checkbox...

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: How to integrate an inline frame into a form

    I would even make it simpler: They have to agree to the EULA to go on, correct? So just put a text link in the next pages, such us "By Using this Service I confirm that I have read and agree with the End User's Licence Agreement" linking the underlined text to your EULA page. Legally you are OK, and you don't need to do any form at all. Just create the EULA page.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49