Hi, may i know izit possible to upload multiple attachment, so far i only able to upload one*(If i put 2 files like below it will only upload the first one).data =array('XXXX.png' => 'data/png;base64,' .base64_encode(file_get_contents('upload\2.png')), 'YYYY.png' => 'data/png;base64,' .base64_encode(file_get_contents('upload\4.png'))); Thank You

Hi everyone, i manage to find the solution, it is actually my fault, there is some wrong in my php code.The correct way should be:data =array('XXXX.png' =>        'data/png;base64,'            .base64_encode(file_get_contents('upload\xxx.png'))); data =array('YYY.png' =>        'data/png;base64,'            .base64_encode(file_get_contents('upload\yyy.png'))); and so on......

Great you got it figured out and shared the solution with us here!

Write a Reply...