I'm new to MeekroDB. I have this line:
DB::query("INSERT INTO order (id, state) VALUES (%i, %s)", $id, $state);
where for example $state = "order paid and delivered". The problem is that when I execute the query and then go to look in the database, I see state column with value "orderpaidanddelivered" (without spaces). Where am I doing wrong?