05-30-2013, 04:15 PM
Hello Again Community...
I started working on a new, better homepage

The Homepage contains an Template System (You can implement your own Template)
The Homepage have some extra futures like multi-language...
Some Code:
$LANG[do_not_use] = "Benutze dies nicht, ohne zu wissen, was du tust!";
$LANG[login:wartung] = "Der Login ist nur für Website Admins erlaubt!";
$LANG[allready_loggedin] = "Du bist bereits eingeloggt!";
$LANG[must_loggedin] = "Du musst eingeloggt sein!";
$LANG[password] = "Passwort";
$LANG[password1] = "Wdh. Passwort";
$LANG[username] = "Benutzername";
$LANG[email] = "Email Adresse";
// This is some Content of /include/lang/de.php
// So, everyone can translate their homepage to an own language by adding new file and change config file:
$SITE[lang] = "de";
// to the new language:
$SITE[lang] = "en";
An Demo: 2
- Live Demo (All Changes can be seen their

// New Ranking...
2
Some Information about security etc...
- Written in/with mysql PDO
- .htaccess deny from all to everything (allow from all to index.php)
- using own framework to trim SQL-Needed strings
<Files *.php>
order deny,allow
deny from all
allow from ::1
</Files>
<Files index.php>
order deny,allow
allow from all
</Files>

