Consulting
We can help you pick the right tools (including open source) so you can run your business at its optimum.
Software Development
We will create custom software to effectively run your business. We can customize PHPNuke or other CMSs or create modules to fit your needs.
Training
Whether you need computer training or PHPNuke training we will teach you how to get the most of your technology.
Great looking sites
We customize and create themes to highlight your site and make it easy to use.
Here's some ideas to make your themes more user friendly:
1. add an admin link for admins.
Code:
if (is_admin($admin)) echo " <a href=\"admin.php\">Admin</a>";
2. Don't say "welcome annonymous" enourage users to login or register.
Code:
if ($username == "") {
echo "<a href=\"account.html\">Login</a> or <a href=\"account-new_user.html\">Register</a> to get <a href=\"account-new_user.html\">Free Member Benefits</a>";
} else {
echo "<a href=\"account.html\">Welcome ".$username."!</a>";
}
3. Show a flashing private message icon to users when they have a message waiting. (this idea may not be worth it because it may
slow the system down a little for doing an extra sql query on
each page load for users. But it's worth some consideration.)
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum