Radio Buttons within Flash Form & PHP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mringuk
    New Member
    • Sep 2008
    • 4

    Radio Buttons within Flash Form & PHP

    I have included a feedback form within my Flash Site which contains two sets of Yes/No RadioButtons. The Form text fields are interfacing with the PHP correctly but the two questions with RadioButtons don't return any result. I believe I've paired the RadioButtons correctly in the Components Inspector but am not sure if the problem is within the RadioButton Setup, the ActionScript or the PHP file.

    I would appreciate any help but please make it simple because at 60 years of age most computer jargon beats me. I have Zipped my working files at

    http://www.deeside-rotary.org.uk/feedback_form.z ip

    Many thanks
  • nomad
    Recognized Expert Contributor
    • Mar 2007
    • 664

    #2
    You might be better of posting your code. Not to many of us are going to open a zip file and look at the contents due to virus and among other things.
    That's my two cents
    nomad

    Comment

    • mringuk
      New Member
      • Sep 2008
      • 4

      #3
      Originally posted by nomad
      You might be better of posting your code. Not to many of us are going to open a zip file and look at the contents due to virus and among other things.
      That's my two cents
      nomad

      Thanks will do, I didn't take that into account.

      Comment

      • mringuk
        New Member
        • Sep 2008
        • 4

        #4
        The code on the send_btn is as follows:

        on (release) {
        if (centre eq "" or name eq "" or email eq "" or message eq "" )
        {
        stop();
        } else {
        loadVariablesNu m("formmail.php ", 0, "POST");
        gotoAndStop(45) ;
        }
        }

        This is sending every to the PHP file and emailing the submitted content except for the RadioButtons. The return from the RadioButton returns [object Object] on each.

        Comment

        Working...