Posts by FabricioCruzCasarini • 33 points
4 posts
-
1
votes2
answers169
viewsQ: Doubt with dynamic fields creation with jquery + php
Hello! I’m doing a simple program for managing my beers and sales. In the order view, I was able to add a new line to include a new item for the order. Fields: id_item(select) | id_lote_item(select)…
-
1
votes1
answer1263
viewsA: Bootstrap File Input Plugin
Jquery.serialize() you won’t be able to get the upload information. Try using the plugin ajaxform An example of my jquery upload: $('#enviar').click(function (Event) { Event.preventDefault(); var…
-
-1
votes2
answers474
viewsA: Take the path before saving CI image
You will use: $test = $this->upload->data('file_path'); // Returns the absolute upload path, assigned in $config['file_path']. $test = $this->upload->data('full_path'); //Returns the…
-
1
votes1
answer94
viewsQ: file upload with json return error
I am uploading a file with jquery+ajax using the jquery form plugin. The form processing is all ok, the file goes up and the data is recorded in the database. The problem is in the return with the…