On Tue, 2007-10-16 at 16:42 +0200, Ladislav Andel wrote:
> arrayDB1 = array(array('8', 'SER'), array('5','Asterisk'))
>
> When finished then it starts reading from second DB
> where I would get
>
> arrayDB2 = array(array('6', 'XIP'), array('4','Asterisk'))
>
>
> Is there any function where I would get
> result = array(array('8', 'SER'), array('9','Asterisk'), array('6','XIP'))
>
You could try something like:
$result[] = $arrayDB1;
$result[] .= $arrayDB2;
If I understand the question correctly.
--Paul
All Email originating from UWC is covered by disclaimer
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php