Hi;<br>I have this code:<br><br>    clientCursor.execute('select ID from %s' % (personalDataTable))<br>    upds = [itm[0] for itm in clientCursor]<br>    print "<input type='hidden' name='upds' value='%s' />" % upds<br>
<br>The problem is that the values passed are 1L, 2L.... When I retrieve them on the other end and try to convert them to integers, guess what happens? So how do I get rid of that "L"?<br>TIA,<br>beno<br>