On Wednesday 05 February 2003 20:51, Chris Hayes wrote:
> At 13:28 5-2-03, you wrote:
> >Try:
> >$image_array = array();
> >$image_array[$file_name] = $image_url;
> >
> >PHP wrote:
> >>I am trying to create associative array in a while loop..
> >>
> >>$image_array = array();  $image_array =
> >>array_push("$file_name"=>"$image_url");
>
> i agree with the suggestion, but maybe (this may be a stupid newbie
> comment) this will also work, if you insist on using array_push:
>
> $image_array = array_push(array("$file_name"=>"$image_url"));

Please read the manual. array_push() does NOT work like that.

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
And in the heartbreak years that lie ahead,
Be true to yourself and the Grateful Dead.
                -- Joan Baez
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to