php Programming Glossary: go_do_it
How to use include within a function? http://stackoverflow.com/questions/2619573/how-to-use-include-within-a-function But I need several support functions as well only used in go_do_it . If they are in the included file I get a redeclare error... are present it does 'see' them. Example A php main.php go_do_it go_do_it function go_do_it include 'func_1.php' php func_1.php.. it does 'see' them. Example A php main.php go_do_it go_do_it function go_do_it include 'func_1.php' php func_1.php echo '..
|