Jump to content

testservers

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male
  • Location
    Nashville, Tennessee USA

testservers's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, I have a YRC shipping form that I have working as it should on an empty php page, but whenever I add the page code to either the EZ-Pages or to the product description area in Zen Cart, the form doesn't work. Below is what's been happening. 1. Whenever I hit the submit button the form adds the product to the shopping cart. 2. The form no longer opens in a new window when the submit button is clicked. The target= gets getting erased whenever I switch the editor back to html view. The form also have a hidden field that inserts the current date upon submitting the form and it isn't working. I've tried adding the form to an EZ Page and I get the same results. The same is when I add the form inside of the product description page. I've also tried a few code samples posted on Zen Cart forum, but they don't wok either because as soon as I put the code into the description and switch back to normal view, I can see the code and parts of it is missing too. It's been so hard to get a form to function inside of the description area, and even the EZ Pages. Can someone help me to get my form to work inside of the Zen Cart description area? Any help appreciated! Kevin
  2. Try WeBid.... It's PHP and Open Source. I just installed it today. Looks promising.
  3. Problem Solved! I was missing the field DISPLAY=PAGE That is what makes the quotes show on the page.
  4. Hello, I'm using a from on my website to get shipping quotes from YRC. Everything works fine, but now I'd like to have the date submitted with the from instead of the user having to input the date. I'm using Dreamweaver CS3. Below is what I had as the hidden date field. <input type="hidden" name="PU_DATE" value="<?php echo $date; ?>" /> I tried a few samples that I search for on Google, but the display page on YRC returns an error. The date have to be submitted as mm/dd/yy. How can I post the form to YRC with the current date submitted with it? Thanks for your valued time. Kevin [uPDATE] The code from my fist post appears to be working on on the form. When I send the form to YRC it displays a shipping quote... which mean the date have been input.
  5. Hello, I'm trying to get the shipping quote from YRC YRC http://www.yrc.com/e_commerce/hyperlinks.html#quote to work on my web site, but every time I submit the form, it doesn't show any quotes, but if I hit the"Back" button on the web site to go back to the page to get the quote and put in the same data, it displays the rate. Test form page: YRC Test Shipping Module http://testing-servers.com/yrc-shipping-link-form.php Code I'm using: Code: <table width="200" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><form id="form1" name="form1" method="post" action="https://my.yrc.com/dynamic/national/servlet?CONTROLLER=com.rdwy.ec.rexcommon.proxy.http.controller.PublicProxyController&redir=/tfq504"> <p> <input name="O_CITY" type="hidden" id="O_CITY" value="Columbus" /> <input name="O_STATE" type="hidden" id="O_STATE" value="MS" /> <input name="O_ZIP" type="hidden" id="O_ZIP" value="39703" /> <input name="O_CTRY" type="hidden" id="O_CTRY" value="USA" /> <input name="D_CTRY" type="hidden" id="D_CTRY" value="USA" /> <input name="WGT1" type="hidden" id="WGT1" value="200" /> <input name="CLASS1" type="hidden" id="CLASS1" value="50" /> <input name="CURRENCY" type="hidden" id="CURRENCY" value="USD" /> <input name="DISPLAY2" type="hidden" id="DISPLAY2" value="PAGE" /> </p> <p><label></label> <label for="textfield">City</label> <input type="text" name="D_CITY" id="D_CITY" /> </p> <p> <label for="label">State</label> <input name="D_STATE" type="text" id="label" size="10" maxlength="2" /> </p> <p> <label for="label2">Zip Code</label> <input type="text" name="D_ZIP" id="label2" /> </p> <p> <label for="textfield">PU Date</label> <input type="text" name="PU_DATE" id="PU_DATE" /> </p> <p> <label for="Submit">Submit</label> <input type="submit" name="DISPLAY" value="Submit" id="DISPLAY" /> </p> </form> <p> </p> <p> </p></td> </tr> </table> Any help appreciated! Thanks Kevin
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.