hi there
How to call a function within another function?
function a($name) { //some code }
function b() { $n = $a('Jack'); //some code }
Please tell me how to....?
thanks in advance
function a { echo 'this is a'; } function b { a(); } b();
thanks thorpe