php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10020 Variable variables
Submitted: 2001-03-27 09:06 UTC Modified: 2002-09-30 18:37 UTC
From: kvdwalt at csir dot co dot za Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 3.0.16 OS: nt
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: kvdwalt at csir dot co dot za
New email:
PHP Version: OS:

 

 [2001-03-27 09:06 UTC] kvdwalt at csir dot co dot za
in html

			vFormInnerHTML = vFormInnerHTML + '<INPUT TYPE=HIDDEN NAME="extractid[]" VALUE='+el.value+'>';

in serverside PHP

for ($i=0;$i < count($extractid); $i++) {
   $t = "extractid[".$i."]";
   echo $t.'<br>';  
   echo $$t.'<br>'; //$$t is empty!!

   echo $extractid[$i].'<br>';


}

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-09-30 18:37 UTC] hholzgra@php.net
Sorry, but the bug system is not the appropriate forum for asking
support questions. Your problem does not imply a bug in PHP itself.
For a list of more appropriate places to ask for help using PHP,
please visit http://www.php.net/support.php

Thank you for your interest in PHP.

the "variable variables" feature works on plain variable names only, there is no array resolving done

$$t is equal to $GLOBALS[$t] here
and    $GLOBALS["extractid[$i]"] 
is not $GLOBALS["extractid"][$i]
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 02:02:52 2024 UTC