Hi, i have an array like this array(a,b,c,d) and I want to insert in the mysql database like this a a b b etc
how can i do this
thanks
Iterate over the array and insert each element twice?
and how can I do that?
Using [man]foreach[/man] to go through the array, and inside the foreach statement, just call mysql_query() twice.