PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
$myArray = array("one","two","three","four","five","six");
// Change value [2] to 3
$myArray[2] = 3;
// OR... Give value [2] the value of [3]
$myArray[2] = $myArray[3];
?>