I have a difficulty that is as follows, I have a CRUD that the upload works correctly, when editing this CRUD I can edit all the data including uploading the image all without problem, however if I decide to edit only the data and not edit the i...
To contextualize:
I'm trying to make only a part of my HTML page updated every 5 seconds. For this, I'm using AJAX. In the middle of development, I encountered a problem of not being able to return the object and my view at the same time, s...
I am trying to send Blob binary data via Ajax to upload via PHP.
However, I am not able to access $ _GET. Returns an error saying undefined index:
responseText: "No images found"
When I comment the upload.php die () line:
respons...
I am using a custom script that prints the value of the currency with comma, but it is not inserting a point in the case of thousands.
Currently it prints like this: 1000,00
I need it to print this way: 1,000,00
Here is part of th...
I'm trying to make an ajax request but it needs a BASIC authentication, follow my code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><script>$(function(){$.post({url:link,contentType...
When loading a page, I have two Ajax requests in a sequence that populate two select's with the options that come from different tables in the database.
But only the first one is executed, the second does not even call. I've followed debuggin...
I'm trying to send data from a table via Ajax to PHP.
I'm doing this by transforming the table into JSON and thus sending via Ajax to PHP.
The scritp looks like this:
<script type="text/javascript">
$('#converter-tabela').click( func...