That is what is confusing to me. Not all functions, as a matter of fact only a few of the functions have an "includes" or a "require". There are over 200 functions written in the file and only 10 of the functions that includes and/or requires referenced at the end of the function. When the function does include one of those, it is generally at the end of the function code. Example:
// SEND THE CUSTOMER NEW ORDER EMAIL
if (setup("email_12") == Y) {
send_mail("12",$account_id,"",$order_id,"");
}
include("member_order_approved.html");
update_all_directory();
I use an excellent PHP editor, so I can readily see all the functions, includes etc for reference.
Thank you so much for helping this newbie understand the process. I believe if I can get this through my thick head I'll will be able to complete the mods. I only have 3 or 4 at the most left and they shouldn't be hard, but I'm just stuck due to not understanding the process flow.
Ruth