How can I save the below
cv_skills=MySQL&cv_skills=HTML&cv_skills=AutoCAD
as
MySQL,HTML,AutoCAD
into the cv_skills
column of my mySQL database?
Currently I am doing implode
but it does not work
$cv_skills = mysql_real_escape_string(implode( ',', $_POST["cv_skills"]));
In this question I have shown the variables as GET just to show how are passed. I am using POST for sure :)