(07-03-2021, 05:36 PM)CoijiRyuna Wrote: (01-12-2021, 09:04 AM)guswie Wrote: image at i.imgur.com/tAQF91W.jpg
I use PHP 7.2 and get message Deprecated after select Table.
what the php version should we use?
How about upload file in input type, can add upload file please?
change this ajax
submitHandler: function(form) {
var formData = new FormData(form);
$(".text-danger").remove();
$.ajax({
url: '<?php echo base_url($controller . '/add') ?>',
type: 'post',
dataType: 'json',
data: formData, // form.serialize(),
mimeType: "multipart/form-data",
on Controler now you can gate name of file
and add file name to your data base and you can upload your file on folder aplication
haii sir, i really change my ajax code with your code on above, but every i click submit button the page always reload. can you help me please sir?