|
Posted by Bala Chandar on 05/05/05 14:05
hi,
On 5/5/05, Angelo Zanetti <angelo@zlogic.co.za> wrote:
> Hi guys,
>
> I have a problem where I use a multi dimensional array on one server and
> now have moved it to another server and it just doesnt work:
>
> $result2 = $userdb->listUsers($clubID);
> $i=0;
>
> while ( $row2 = mysql_fetch_array($result2) )
> {
> //echo $row2['firstname'];
> $user[$i]['firstname']=$row2['firstname'];
> $user[$i]['lastname']=$row2['lastname'];
> $user[$i]['userid']=$row2['userid'];
> $i++;
> }
>
> the loop is definitely getting the values from the database as i can see
> them when I echo out the recordset variables ($row[....)
>
try explicityly declaring the array variables
$user[] = array();
> I'm thinking that there is some sort of configuration issue here with
> the other server. Its running Apache 1 and the server that works is
> running Apache 2.
> I've tried single and double quotes and neither work, does anybody else
> know what can be causing this not to assign the value to the
> multidimensional array?
>
> AFAIK both servers have register_globals OFF
>
> TIA
>
> --
>
> Angelo Zanetti
> Z Logic
> www.zlogic.co.za
> [c] +27 72 441 3355
> [t] +27 21 469 1052
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
bala> balachandar muruganantham
blog> lynx http://chandar.blogspot.com
web> http://www.chennaishopping.com
Navigation:
[Reply to this message]
|