PHP Code:
// NUMERIC
INSERT INTO MyTable ( MyFirstRow, MySecondRow ) VALUES ( 1, 2 )
// INSERT INTO Ach ( Kills, Deaths ) VALUES ( %d, %d )
// TEXT
INSERT INTO MyTable ( MyFirstRow, MySecondRow ) VALUES ( 'abc', 'lmn' )
// INSERT INTO Ach ( Name, Steam ) VALUES ( '%s', '%s' )
// FUNCTIONS
INSERT INTO MyTable ( MyFirstRow ) VALUES ( unix_timestamp( now( ) ) ) // TIME ELAPSED IN SECONDS SINCE UNIX EPOCH ( JAN 01 1970 )
Please make sure your
szQuery string has enough characters to handle your
whole query. I recommend
256 or
512 cells instead.
__________________