Jump to content

OverDoSe

Inactive Member
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

About OverDoSe

Informations

  • Gender
    Male

Social Networks

  • Skype
    ahmeterdm

Recent Profile Visitors

2357 profile views

OverDoSe's Achievements

Rookie

Rookie (2/16)

  • Reacting Well
  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Hahahaha lol You are searching the wrong at place . You should look at turkmmo.
  2. Hi syserr.txt 0221 05:41:21021 :: Traceback (most recent call last): 0221 05:41:21022 :: File "game.py", line 1727, in OnKeyUp 0221 05:41:21022 :: TypeError 0221 05:41:21022 :: : 0221 05:41:21022 :: 'NoneType' object has no attribute '__getitem__' 0221 05:41:21022 :: game.py def OnKeyUp(self, key): try: self.onClickKeyDict[key]() except KeyError: pass except: raise return True I would be very grateful for any feedback you could might be able to give me on my problem.
  3. Config - server information <?php $dbhost = "serverip"; $dbuser = "root"; $dbpass = "mysqlpass"; $mysql_db = "account"; ?> Register page (only php) <?php include('config.php'); // server config if(isset($_POST['submit']) && $_POST['submit'] == 'Register') { $username = mysql_real_escape_string($_POST['username']); $passwd = mysql_real_escape_string($_POST['passwd']); $passwd2 = mysql_real_escape_string($_POST['passwd2']); $email = mysql_real_escape_string($_POST['email']); $social_id = mysql_real_escape_string($_POST['social_id']); if($passwd == $passwd2) { $sql = "INSERT INTO account SET login = '".$username."' password = PASSWORD('".$passwd."') email = '".$email."' social_id = '".$social_id."'"; $result = mysql_query($sql); if($result) { echo "Register ok"; } else { echo "Register declined"; } } } ?>
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.