OK - simple.
I have this big spaghetti code (my first real PHP project) file and I want to move my functions out of the big ass 12k php file.
Well . . .
I moved a function called "listprojects" to listprojects.php
<?php
function listprojects($conn) {
. . . .function stuff
}
?>
. . . and in the main program I put the include statement . . . .
include "listprojects.php";
. . .. but when I run the program in the browser nothing happens. The files are in the same directory by the way . . .
Whassup???