31.07.2012, 15:09
@TheArcher
There you go @ http://imgur.com/J4Arp
@Haters
Yes I can show you the difference
1. Config file,
2. Another way for printing image:
3. Another way of connection to MySQL
4. Another way of geting results from database:
Mine:
His:
5. And many stuff which are different
There you go @ http://imgur.com/J4Arp
@Haters
Yes I can show you the difference
1. Config file,
2. Another way for printing image:
PHP Code:
ob_start();
imagepng($myImage);
printf('<img src="data:image/png;base64,%s"/>',
base64_encode(ob_get_clean()));
imagedestroy($myImage);
4. Another way of geting results from database:
Mine:
PHP Code:
$query="SELECT * FROM users WHERE Username='$player_name' LIMIT 1";
PHP Code:
$query="SELECT * FROM users WHERE Playername='$player_name'";