Hello!
I have an array in $_POST:
Array ( [tags] => Javascript,PHP,Java,C++,Python)
How can i convert this Array into Array like this:
Array ( [tag1] => Javascript [tag2] => PHP [tag3] => Java [tag4] => C++ [tag5] => Python)
I guess i need to use regexp to remove the commas and do split in "foreach as".. But i'm so newbie in PHP... Please help me