I have a fully functional billing application, working fine. However I'm adding a page for each client and need some help with using an echo within an include.
My echo line is the following (and works fine, shows client's name):
<?php echo $clientdata['name'] ?>
I'd like it to echo the name within an include script to pull a custom page:
<?php include("client_forms/ECHOHERE.php") ?>
I've tried everything, but I keep getting errors. Any help would be appreciated.