Hi Everybody,
I have a problem about calling a function from other file PHP. for example,
test.php
<?php
function abc(){
echo "How is going";
}
?>
run.php
<?php
include("test.php");
abc();
?>
but it show, called undefined function abc();
so, everybody has this problem before.. Please help me
Thanks a lot for your helping.
Hope to hear you guys soon>
Cuong Tran