Posts: 255
Name: John Nerush
Location: Milton Keynes, UK
|
Sounds like you have a few files with the individual functions/processes i.e. customer-services.php, internet-services-info.php etc and you want them all combined into the one index page.
If this is the case you can do a few different things:
make one large index file using the different code from the files to make up the one index file.
or a better method,
include or require the files into the index file.
PHP Code:
<?php
//template/html
include '/includes/sidebar.php';
//more html
include '/includes/customer-info.php'; include '/includes/internet-services-info.php'; include '/includes/voip-services-info.php'; include '/includes/payment-info.php'; include '/includes/customer-notes.php';
//more html ?>
However from the face of it, it seems you dont have much experience with PHP and potencially HTML so it may be quite the challenge for you to get it running or to explain it.
|