• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Post your latest work!

I cannot see it ;f
Well, I made visual tooltip over eq shower like on wypas and few others, just it supports all attributes I found(or will when I'll finish writing descriptions:D)
Just I have it only on my pc so cannot give working link
Maybe later I'll post link to some video if you guys want
 
Latest Work

newnewssystem.jpg
 
@up
Nothing special ;) It's normal WYSIWYG editor downloaded from Internet ;)
 
Working on my template for Modern Aac

http://www14.speedy*****malware.localhost/files/21991160/download/site.JPG
 
Hey all.

I made this design, tell me what you think ;)
Whateverness.png


Added: Skytheme
Skyness.png
 
Last edited:
My class using for my website, recoded all :)

PHP:
<?php
class user {
	public function isValidEmail($email) {
		return mysql_num_rows(mysql_query('SELECT `email` FROM `users` WHERE `email` = "'.$email.'"'));
	}
	public function isValidLogin($email, $password) {
		return mysql_num_rows(mysql_query('SELECT `email`, `password` FROM `users` WHERE `email` = "'.$email.'" AND `password` = "'.$password.'"'));	
	}
	public function fetch($query) {
		return mysql_fetch_array(mysql_query($query));	
	}
	
	public function getPasswordById($id) {
		$result = $this->fetch('SELECT `id`, `password` FROM `users` WHERE `id` = "'.$id.'"');
		return $result['password'];
	}
	public function getUsernameById($id) {
		$result = $this->fetch('SELECT `id`, `username` FROM `users` WHERE `id` = "'.$id.'"');
		return $result['username'];
	}
	public function getMembers() {
	$query = mysql_query("SELECT * FROM `users`");
	$i = 0;
		while($show = mysql_fetch_array($query)){
			$i++;
			echo '
			<tr align="center">
				<td class="m">'.$i.'.</td>
				<td class="m">'.$show['username'].'</td>
				<td class="m">'.$show['joined'].'</td>
				<td class="m">'.($show['activated'] < 2 ? "<font color='green'>Activated</font>" : "<font color='red'>Inactivated</font>").'</td>
			</tr>
			';
		}
	}
	public function countMembers() {
		return mysql_num_rows(mysql_query("SELECT `email` FROM `users`"));
	}
}
?>
 
PHP:
<?php
	for($i = 0; $i < 10000000; $i++)
		echo 'Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail<br />';
?>

Feel free to test. :)
 
Hey all.

I made this design, tell me what you think ;)
Whateverness.png


Added: Skytheme
Skyness.png

I strongly suggest you blend the 2 images together at the first pic, the background that is.

And the second, what's up with the annoying black line across the website to seperate the 2 colours? xD Same there, blend them together instead :)

I wouldn't be able to do it my own, so im not complaining, just giving you some tips :)
 
PHP:
<?php
	for($i = 0; $i < 10000000; $i++)
		echo 'Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail<br />';
?>

Feel free to test. :)

10000000 x Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail Fail fail fail fail fail fail

;//

#Topic
PHP:
<?PHP
$n = 2;
if($n == 2) {
	echo 'sherlok is awesome';
}
else {
	echo 'not';
}
?>
 
Back
Top