I have a small problem :) I was searching the web but didn\'t find any solutions.
I have a value like this (got it from $_GET[])
tag1, tag2, tag3, tag4
Use explode() function to split the string
explode()
$tag = "tag1, tag2, tag3"; $pieces = explode(", ", $tag);
SQL query would be
INSERT INTO myTable VALUES ($pieces[0],$pieces[1],$pieces[2]);
Good Luck!!!