I'm having problems in SQL when doing a small insertion in DB. I have a table with 4 fields:
id_match -> int
id_usuario1 -> int
id_usuario2 -> int
situation -> varchar(5)
When I make the following insertion, it does not enter the DB:
INSERT INTO match VALUES(NULL, '$usuario1', '$usuario2', 'open')
What's wrong?