Hey, I am making a content management system for you habbo users so here is the development thread.
Already there
- Style
- Configuration
- Login
- Register
What's going on?
- Housekeeping
- Security
- Faster
- Client
- Pages
Credits:
Code:
Kryptos - Some Snippets
Ry - Design
Nominal - for compliments :)
Tr0ll.™ - Big Help !
Images


Code Snippets
PHP Code:
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$hotel = "mHotel";
/* create a prepared statement */
if ($stmt = mysqli_prepare($link, "SELECT Hotel FROM Home WHERE Name=?")) {
/* bind parameters for markers */
mysqli_stmt_bind_param($stmt, "s", $swfs);
/* execute query */
mysqli_stmt_execute($stmt);
/* bind result variables */
mysqli_stmt_bind_result($stmt, $ip);
/* fetch value */
mysqli_stmt_fetch($stmt);
printf("%s is in district %s\n", $hotel, $swfs);
/* close statement */
mysqli_stmt_close($stmt);
}
/* close connection */
mysqli_close($link);
?>