I have:
Code: Select all
$votes1 = array( 0=> array(13,'topic 1');
// merge with..
$votes2 = array( 1 => array(23,'topic 2');Code: Select all
$votes = array( 0 => array(13,'topic 1'),
1 => array(23,'topic 2');Moderator: General Moderators
Code: Select all
$votes1 = array( 0=> array(13,'topic 1');
// merge with..
$votes2 = array( 1 => array(23,'topic 2');Code: Select all
$votes = array( 0 => array(13,'topic 1'),
1 => array(23,'topic 2');Code: Select all
$votes1 = array( 0=> array(13,'topic 1');
$votes2 = array( 1 => array(23,'topic 2');
$combined_votes = $votes1 + $votes2;