Say I have these two arrays as an example,
How can I combine them to make that?:PHP Code:$href = array('1.html', '2.gif', '3.php');
$name = array('My html file', 'My gif file', 'My php file');
PHP Code:$combined = array("1.html" => "My html file", "2.gif" => "My gif file", "3.php" => "My php file")








Bookmarks