How to upload file and insert data with php jquery ajax
I cannot send via ajax to php file upload and data with ajax. This my code just send file upload . data not send to my php code. I create form and the function send on click using ajax to post on php. I'm using codeigniter This my form: <form action="<?php echo site_url('home/send_chat');?>" method="post" enctype="multipart/form-data"> <input name="message" id="message" type="text" class="form-control input-sm" /> <input type="file" id="file" name="file" /> <br /> <span class="input-group btn"> <button type="submit" class="btn btn-info btn-sm" id="submit">Enkripsi</button> </span> </form> This