$10 if you can help with this script!

4 replies
I've just downloaded Psychic Salesletter from Eben Pagan and created my quiz to find the opt-in form is 'integrated' with Get Response and that I'll have to manually edit the html to make it work with Aweber.

I've spent an hour trying to use my limited knowledge of html but have had zero success. Anybody here be willing to take a quick look?

A grand prize of $10 + the super special bonus of my life-long gratitude goes to whoever can solve it for me!

Here's the html!

Attachment 8587
#$10 #script
  • Profile picture of the author wincex
    You want to change the form,right?
    If so, you just need to replace the form with the one you got from aweber.

    Open the file quiz.htm with notepad and replace the code below from here:
    <FORM METHOD=
    </form>
    to here...

    If you like I can do that for you, free (we say gratis where I live), but I need the source code of your aweber form.
    {{ DiscussionBoard.errors[3976463].message }}
    • Profile picture of the author Tom Lazenby
      Thanks Wincex but I tried that and it didn't work. It seems there is some slightly trickier stuff going on.
      Signature

      YES IT IS STILL POSSIBLE
      !
      Not Only That, It's Perfectly Legal & Whitehat!
      CLICK HERE
      FOR DETAILS
      {{ DiscussionBoard.errors[3978508].message }}
      • Profile picture of the author wincex
        Sorry for not being of any help...
        {{ DiscussionBoard.errors[3979952].message }}
  • Profile picture of the author zeeawk
    Should be pretty easy.
    Your form action needs to be set like this:
    Code:
    <form action="http://www.aweber.com/scripts/addlead.pl" name="survey" onSubmit="javascript:return checkSurvey();">
    Change:
    Code:
    <input type="text" name="yourname" value="">
    TO:
    <input type="text" name="name" value="">
    AND Change:
    Code:
    <input type="text" name="youremail" value="">
    TO:
    <input type="text" name="email" value="">
    To add custom fields you would want to set those up in your aweber account.
    Then you would add them like so:
    Code:
    Instead of this:
    <input type="radio" name="q7" value="A1" id="qid7A1">
    It would be this:
    <input type="radio" name="custom[q7]" value="A1" id="qid7A1">
    Do this for all your custom fields.

    The are other things you can do too.
    For more information take a look at: Can I Use My Own Form? :: AWeber Knowledge Base
    {{ DiscussionBoard.errors[3980275].message }}

Trending Topics