09.06.2016, 17:36
Quote:
Good work once again, sB.
I just got some constructive criticism (I said parts of this at your own server\'s shoutbox aswell ): - About half of the JavaScript scripts and CSS stylesheets you link to are used no-where in the UCP, but still creating extra page-load: - The UCP would be easier to expand by others if it was done Object Oriented. Although it\'s probably a bit hard to change this now, you could see this as an idea for further projects. Again, nice work |
And UCP is already easy to expand by others, you can only create a page with just the following code
PHP Code:
<?php
include \'includes/config.php\';
include \'includes/header.php\';
checkForLogin();
?>
<div class="row">
<div class="col-md-12">
<h1 class="page-header">
Example page
</h1>
</div>
</div>
<?php
include \'includes/footer.php\';
?>