[PHP] [Newbie Guide] For the benefit of new members

2004-10-04 Thread Gnanavel
1. If you have any queries/problems about PHP try http://www.php.net/manual/en first. You can download a copy and use it offline also. Please also try http://www.php.net/manual/faq.php for answers to frequently answered questions about PHP (added by Christophe Chisogne). 2. Try http://www.g

Re: [PHP] Newbie array problem

2004-09-23 Thread Gnanavel
On Thursday 23 September 2004 03:50 pm, Gnanavel wrote: > On Thursday 23 September 2004 03:46 pm, Phpu wrote: > > If i have an array > > $array = array(1, 2, 3, 4, 5, 6, 7) > > How can i display the array element sepparated by (;) like this > > $display = 1;2;3;4;5;6;7

Re: [PHP] Newbie array problem

2004-09-23 Thread Gnanavel
On Thursday 23 September 2004 03:46 pm, Phpu wrote: > If i have an array > $array = array(1, 2, 3, 4, 5, 6, 7) > How can i display the array element sepparated by (;) like this > $display = 1;2;3;4;5;6;7 > > > Thanks use $display=array_implode(";",$array); -- PHP General Mailing List (http://www.