Mailinglisten-Archive |
Burkhard Stollenwerk wrote:
> Will ein Array per get übergeben, jedoch dind dta[i] leer
> lese wie folgt aus:
> for($i=0;$i<=19;$i++) {
> $dta[$i]=$HTTP_GET_VARS['dta[$i]'];
$HTTP_GET_VARS['dta'][$i];
> echo $dta[$i].$i;
> };
aber wieso nicht:
foreach ( $_REQUEST['dta'] as $val )
{
$dta[] = $val;
}
oder noch einfacher:
$dta = $_REQUEST['dta']
achte aber auf REGISTER_GLOBALS !!
mit register_globals = on
ist $dta und $_REQUEST['dta'] (oder $HTTP_GET_VARS['dta']) das selbe
(nicht das gleiche!)!
--
Sebastian Mendel (www.sebastianmendel.de)
*www.warzonez.de* | www.tekkno4u.de | www.nofetish.com
php::bar PHP Wiki - Listenarchive