Good afternoon all,
I'm at the beginning stages of learning PHP. I'm trying to understand passing in functions. I have a video lesson so I can see what is being explained but for some reason i am still not getting it.
<?php
function hello($word)
{
echo "Hello {$word}!<br/>";
}
hello("Daniweb");
?>
Can someone possibly explain it in a way that I would? This will also help me better understand ActionScript 3.0 Thanks.