I have the following variable:
$ids = "758,749";
The table has the columns: id, provider_id, accept.
When running a PHP script, I would like it to do something like this:
INSERT INTO tabela (id, id_prestador, aceite) VALUES (null, $iddecadaprestador1, '0');
INSERT INTO tabela (id, id_prestador, aceite) VALUES (null, $iddecadaprestador2, '0');
That is, the column provider_id is variable, each value being inside the $ ids variable and the other fields are fixed.