PHP Code:
new szTemp[ 512 ]
formatex( szTemp, charsmax( szTemp ),
"INSERT INTO `%s` ('name','password','email','status') VALUES ('%s','%s','%s','Online')", gTn, g_szName[ id ], g_szPassword[ id ], g_szEmail[ id ] )
SQL_ThreadQuery( g_SqlTuple, "IgnoreHandle", szTemp )
The thing is that most of the time it works
But when I check the database there are some rows where there is no password
g_szPassword[ id ] is allways alphanumeric ( md5 hash )
The column size for the password is correct varchar(32)
It parses the name corectly, the email and the status but the password sometimes not
Any ideas?