I’m trying to use the mysql IN(,) function for flutter use, to retrieve two values from a single column
"SELECT * from TABLE
WHERE COLUMN
IN (VAL1,VAL2) "<= Now this works fine in thunder client, I just want to implement it for flutter use, I tried:
"SELECT * from TABLE
WHERE COLUMN
IN (?,?) " <= but I didn’t know how to assign it to the PHP variables.
please help
2
Answers
If you just want to concat PHP variable to a string, try this:
You can: