Hi
I have a csv file that is enclosed by "". i am inserting it in the database but need to take the "" out of the string. How can i do this.
eg. "a" all i want to insert is a
while (($data = fgetcsv($handle, 1000, ",",'"')) !== FALSE) {
This is how i loop in the file
Thanks in advance