Hey, I would really appreciate any help I could get with this. Its been a huge headache for me all day. I normally don't create code but im pretty good at editing other peoples stuff and combining php together and stuff like that. This is out of my league... I need a sample query string that will post the information when put in the URL in replacement of the webform. Don't ask why, I just need this. We are losing a ton of sign ups because of this so it is VITAL I get this corrected asap. Here is the webform code... <form accept-charset="UTF-8" action="https://PRIVATE CODE.infusionsoft.com/app/form/process/43b141428387198ba51d1a12abeeb800" method="POST" name="Standard CoReg Mail Form" style="height:100%; margin:0" target=""> <input name="inf_form_xid" type="hidden" value="43b141428387198ba51d1a12abeeb800" /><input name="inf_form_name" type="hidden" value="Standard CoReg Mail Form" /><input name="infusionsoft_version" type="hidden" value="1.22.11.28" /> <div class="blue beta-base beta-font-b" id="mainContent" style="height:100%"> <table cellpadding="10" cellspacing="0" class="background" height="100%" width="100%"> <tbody> <tr> <td align="center" valign="top"> <table bgcolor="#FFFFFF" cellpadding="20" cellspacing="0" class="bodyContainer" width="100%"> <tbody> <tr> <td bgcolor="#FFFFFF" class="body" sectionid="body" valign="top"> <div class="text" id="webformErrors" name="errorContent"> </div> <div> <div class="authoring-image image-snippet" contentid="image"> <div class="imageSnippet-alignDiv" style="TEXT-ALIGN: center"> <img align="bottom" alt="ibid2SAVE" border="0" height="57" manualresize="false" src="https://cff87798.infusionsoft.com/Download?Id=466" title="ibid2SAVE" width="320" /> </div> </div> </div> <div> <div style="height:20px"> <div style="border-bottom:1px solid #CCCCCC; height:10px"> </div> <div style="height:10px"> </div> </div> </div> <div> <table class="infusion-field-container" style="width:100%"> <tbody> <tr> <td class="infusion-field-label-container"> <label for="inf_field_FirstName">First Name *</label> </td> <td class="infusion-field-input-container" style="width:200px"> <input class="infusion-field-input" id="inf_field_FirstName" name="inf_field_FirstName" type="text" /> </td> </tr> </tbody> </table> </div> <div> <table class="infusion-field-container" style="width:100%"> <tbody> <tr> <td class="infusion-field-label-container"> <label for="inf_field_LastName">Last Name *</label> </td> <td class="infusion-field-input-container" style="width:200px"> <input class="infusion-field-input" id="inf_field_LastName" name="inf_field_LastName" type="text" /> </td> </tr> </tbody> </table> </div> <div> <table class="infusion-field-container" style="width:100%"> <tbody> <tr> <td class="infusion-field-label-container"> <label for="inf_field_Email">Email *</label> </td> <td class="infusion-field-input-container" style="width:200px"> <input class="infusion-field-input" id="inf_field_Email" name="inf_field_Email" type="text" /> </td> </tr> </tbody> </table> </div> <div> <div style="height:25px; line-height:25px"> </div> </div> <div> <table class="infusion-field-container" style="width:100%"> <tbody> <tr> <td class="infusion-field-input-container" style="width:200px"> <table class="infusion-checkbox-radio-table"> <tbody> <tr> <td class="infusion-checkbox-radio-input-container" valign="top"> <input id="inf_option_Signmeupfortheibid2SAVEmailinglist " name="inf_option_Signmeupfortheibid2SAVEmailinglis t" type="checkbox" value="410" /> </td> <td class="infusion-checkbox-radio-label-container" valign="middle"> <label for="inf_option_Signmeupfortheibid2SAVEmailinglist ">Sign me up for the ibid2SAVE mailing list </label> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> <div> <div style="height:15px; line-height:15px"> </div> </div> <div> <div class="infusion-submit-button" style="text-align:center"> <input style="height:30px; width:300px" type="submit" value="Submit" /> Here is a sample of what im looking for: http: //servernamehere.list-manage1.com/subscribe/post?u=a661a01509621af9dd4ae1934&id=fcd36a9c39?source=websitenamehere.com&fname=john&lname=smith&email=fakeemail@yahoo.com&ip=123.24.15.1&date=00/00/00&username=testname&group=1 If someone can give me the correct query string I don't have much to offer but will tweet your website out to 5000+ of my followers on Twitter. And of course I am already giving out a free do follow PR3 Link in my sig.
Not sure if you've solved your problem, but I think what you are after is the form method. Change it from POST to GET. That should append all the values in the URL. Good luck