|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-03-16 06:37 UTC] sniper@php.net
[2001-03-16 06:59 UTC] torben@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 16:00:01 2025 UTC |
The number of inputs from my form varies so I have distinguished them using a counter that increments for each record: <input type="text" name=Service<?php echo $counter ?> size="10"> When requesting them from the header I loop through using another counter: while ($counter <= $noServices) { $serviceId = $HTTP_POST_VARS['Service$counter']; $counter++ } No matter how I try to build the name of the post variable I always get the following error: Warning: Undefined variable: HTTP_POST_VARS in C:\Inetpub\wwwroot/php/neuquote/startquote.php on line 251 I have tried buiding the string as follows: 'Service$counter' 'Service'.$counter "Service".$counter $postVar = "Service".$counter // put $postVar between [] I have done this in ASP before and from what I have seen from PHP so far it is more powerful, thus hopefully one of u guys can help by a different string build or a different approuch to creating the inputs Thank you for your time. John Stoops, Neutralize (*\*)