Quote:
Originally Posted by xantowskii
PHP код:
$query="SELECT * FROM users WHERE Playername='$player_name'";
Shouldn't it be
PHP код:
$query="SELECT * FROM users WHERE Playername='$player_name' LIMIT 1";
|
Well, that could be yes. However, you can only have 1 same playername in the database... so I don't think it'll change anything to the result.
Quote:
This is a really sweet tutorial!
Well done. Just out of interest. For servers that use INI file systems, could the PHP function parse_ini_file() be used, instead of connecting to a database?
|
Sorry, but I don't know how to do this. I'll look up some more information about this.