Hi all,
gnahan ko mahibaw unsaon pag kuha sa function or to call a function itself inside another function.
Thanks in advance mga bro,PHP Code:
<?php
function first_function($vars=null){
function second_function(){
return 'WANT TO GET first_function("and some string here..") function';
}
}
?>