PHP Code:
public UpdateGameLIVE(id)
{
new szQuery[3800];
new match_id = SQL_GetInsertId(szQuery);
formatex( szQuery, 3799, "UPDATE `matches` SET `left_score` = '%d', `right_score` = '%d' WHERE match_id = '%d';", scoreCTS, scoreTS, match_id);
SQL_ThreadQuery( g_hTuple, "QuerySetData", szQuery);
}
But getting error then compiling. Any ideas?