|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-01 14:57 UTC] hholzgra@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 13:00:01 2025 UTC |
When using forms with a lot of text fields, PHP forgets some of the variables. Excerpt from the input form: printf ("<tr>"); while (ora_fetch($curs)) { $resultrows = $resultrows + 1; $tprogram = ora_getcolumn($curs,2); $thpage = ora_getcolumn($curs,3); printf ("<tr>"); ?> <td> <input type="hidden" name="tmarker<?echo $i;?>" value="C"> <input type="checkbox" name="tdelete<?echo $resultrows;?>" value="del"> </td> <td> <input size=25 name="tprogram<?echo $resultrows;?>" value="<?echo $tprogram;?>"> </td> <td> <input size=25 name="thpage<?echo $resultrows;?>" value="<?echo $thpage;?>"> </td> <? printf ("</tr>"); } When filled out with: tprogramX thpageX sdfsdf aa - ddf b - b c - c d - xpage using: while (list($var, $value) = each($HTTP_GET_VARS)) { echo "$var = $value<br>\n"; } shows that the last textfield ("xpage") is not stored in a PHP variable (it doesn't matter if I'm using PUT og POST in the form).