<input type="submit" name="submit" value="Remove" class="place_order"/>

I don't know what the context is like, but you may be better off just using
an entire form here with hidden fields. i.e.

<form target="..." action="...">
 <input type="hidden" name="submit" value="Remove" />
 <input type="hidden" name="product_so" value="1234" />
 <input type="submit" value="Remove" class="place_order"/>
</form>


Without knowing what else is going on in your page, and how the request is
being handled on the server, it's kind of hard to give exact advice. :)

Chris H.

Reply via email to