2010/12/18 gerardo Juarez <[email protected]>: > <form name="nombre" > action="http://mi_sitio/cgi-bin/mi_script?tx=23sc432cs3ws" method="POST"> > <input type=hidden name=CONTEXT value="3o4dflakoiwhkad"> > ... siguen otros campos de nombre extraño e indescifrable > </form>
Es que estás mezclando POST y GET. Lo mejor sería mover tx dentro del formulario: <input type='hidden' name='tx' value='23sc432cs3ws'> ¿O no tienes control sobre eso? _______________________________________________ Python-es mailing list [email protected] http://mail.python.org/mailman/listinfo/python-es FAQ: http://python-es-faq.wikidot.com/
