Question Everything!
New member
I dont know how to ask this so i try showing it. Something like this:
funX("one","two","three","four");
function funX($theArray) {
$theArray = array($theArray);
echo $theArray[3];
}
SEE HERE:
addall(1,2,4,7,3,7,8,4,2,3,5,8,8,4,3,2,5,9,9,8,666,54);
addall(6,8,4,3,7,9,43);
function addall() {
//gets all the numbers and adds them together.
}
funX("one","two","three","four");
function funX($theArray) {
$theArray = array($theArray);
echo $theArray[3];
}
SEE HERE:
addall(1,2,4,7,3,7,8,4,2,3,5,8,8,4,3,2,5,9,9,8,666,54);
addall(6,8,4,3,7,9,43);
function addall() {
//gets all the numbers and adds them together.
}