My HTML code as following:
<INPUT type="text" name="txt[]">
<INPUT type="checkbox" name="chk[]"/>
I get the value in PHP by
<?php
$chkbox = $_POST['chk'];
$txtbox = $_POST['txt'];
foreach($txtbox as $a => $b)
echo "$chkbox[$a] - $txtbox[$a] <br />";
?>
How do get the value in Google App Engine using Python?