Ok who's using mysqli? I'm moving over to the mysqli OO method. I'm trying to perform an insert and having difficulty. $sql = "INSERT INTO USERS (record_id, name_first, name_last) VALUES (1, 'George', 'Dubbuyah')"; $mysqli->query($sql); I have a followup SELECT that prints the rowcount so I can see if the rows are increasing but they aren't. I figured this would be enough for the insert, I even tried: $mysqli->commit(); but their is no change. The SELECT is returning the correct amount of rows. Any suggestions? -- J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php