Want to post aweber inputs to gotowebinar

3 replies
I have following aweber form code.


<div class="af-element">

<label class="previewLabel" for="awf_field-32723898">Available Time:</label>

<div class="af-selectWrap"><select id="awf_field-32723898" name="custom Time" tabindex="503" >

<option class="multiChoice" value="808400113">12:00 PM EST</option>

<option class="multiChoice" value="557535713">02:30 PM EST</option>

<option class="multiChoice" value="754418121">06:00 PM EST</option>

</select>

</div><input type="hidden" name="meta_preselected_awf_field-32723898" value=""/><div class="af-clear"></div></div><div class="af-element buttonContainer">


I want to get the selected option value to GET in following form in the place of "PUT YOUR GTW WEBINAR KEY VALUE HERE".. so that selected webinar key [option code (number)] can be transferred to url to get correct subscription.

<HTML>
<HEAD><TITLE>Processing Registration</TITLE></HEAD>
<BODY>
<CENTER>
<span style="font-weight:strong;font-size:14.0pt">Processing registration . . .<BR><BR>If this page does not refresh within 10 seconds, click "Complete Registration" button.</span>
<form action="htt*ps://ww*w.gotomeet*ing.c*om/en_US/island/webinar/regist*ration.flow" method=post>
<input type="hidden" name=Template value="island/webinar/registration.tmpl">
<input type="hidden" name=Form value="webinarRegistrationForm">
<input type="hidden" name=WebinarKey value="PUT YOUR GTW WEBINAR KEY VALUE HERE">
<input type="hidden" name=ViewArchivedWebinar value="false">
<input type="hidden" name=Name_First value="<?php echo $_GET["name"]; ?>">
<input type="hidden" name=Name_Last value="<?php echo $_GET["custom_lastname"]; ?>">
<input type="hidden" name=Email value="<?php echo $_GET["email"]; ?>">
<!-- <input type="hidden" name="Redirect" value=""> -->
<input type="submit" value="Complete Registration . . ." style="font-weight:strong;">
</form>
<script type="text/javascript">
<!--
document.forms[0].submit();
//-->
</script>
</CENTER>
</BODY>
</HTML>
#aweber #gotowebinar #inputs #post
  • Profile picture of the author lauraRoman
    please remove * from the url.. i was unable to post url that is why i used stars here.
    {{ DiscussionBoard.errors[5873147].message }}
  • Profile picture of the author Angel Anderson
    what are you trying to do? automatically register in both aweber and gotowebinar?
    Signature
    The Strategy Specialist Helping You Achieve Your Goals Via Training And Support contact me via http://www.angelanderson.com
    {{ DiscussionBoard.errors[5986432].message }}
  • Profile picture of the author Big Squid
    Question: Are they submitting the Aweber form, and then populating the GoToMetting form?

    If yes, you can use PHP. Something like:
    $custom_time = $_GET['custom Time'];

    and then...
    <input type="hidden" name=WebinarKey value="<php echo $custom_time; ?>">


    OR...if no, you can use JavaScript...but I'd need to see more of the script.
    {{ DiscussionBoard.errors[5993782].message }}

Trending Topics