php - Problems with <form> and Dynamically-generated links -
related directly post, having trouble implementing sound advice given @sean, because can see on page:
http://www.onestopfasteners.com.au/checkout.php - have wrapped form tags around table element, form doesn't seem working, , nothing ever gets "post"ed either. i've changed code around abit experiment, haven't found solution, , no search anywhere has proven useful yet.
i'd appreciate @ all. i'm baffled!
thanks!
p.s. thought maybe fact wrapping form elements around dynamically generated content why form isn't working, doesn't make sense me and, i've done before, can't it, can it?
code:
i know, it's long, apologies in advance. :)
<?php // (c) code removed ;) problem solved - helped! ?>
i think problem with:
function submit() { document.myform.submit(); }
try:
function submit() { document.getelementbyid('ct_form').submit(); }
it looks using jquery in page use:
function submit() { $('#ct_form').submit(); }
Comments
Post a Comment