Questions tagged as 'ajax'

3
answers

Send variables by AJAX to a PHP file [closed]

Why do not the variables from ajax to php pass? This is the script: $(document).ready(function(){ $("#editarot_btn").click(function(){ var ot_antigua = $("#ot_editar").val(); var ot_nueva = $("#nueva_ot")...
asked by 18.10.2017 / 16:35
1
answer

Insert SQL query with AJAX and ASP.Net

Hello, I need to do a SQL INSERT using ajax in ASP.NET, I'm not sure what I'm missing. $('#submit').click(function () { insertFeedback(); }); function insertFeedback() { var modelx = new Object(); var depS = documen...
asked by 18.10.2017 / 23:38
1
answer

Problem with POST ajax method with jqery and php

How about, I'm starting with ajax and even though I've searched, I can not find the error, I want to post a picture but it does not work, could you help me? I leave the code, thank you already. I think the error is in the ajax part, but it do...
asked by 13.10.2017 / 18:14
1
answer

loading with ajax in codeigniter while running SQL Server job

I'll tell you, I've been developing a PHP platform with codeigniter 3.0, I'm connected to a local SQL Server database, in which I have a job called Automatic. This job is executed using the function of the model "execute_job": CONTROLLER pu...
asked by 10.10.2017 / 18:52
1
answer

Help with the update in mysql

I have a code in php and mysql to edit a ticket but when I edit it with the new values it tells me the message as if it had been inserted but it does not enter the database the ajax code to edit <?php include('is_logged.php'); if (empty(...
asked by 04.10.2017 / 17:13
1
answer

The data is not saved when it is sent

Greetings to all, I have this form that sends data without leaving to another page, but when doing it with ajax, the other page does not receive the data,  specifically in the client form. here my code. function openCity(evt, cityName) {...
asked by 09.10.2017 / 23:51
2
answers

It is saved in the db but the DOM is not updated

PHP <?php $servername = "localhost"; $username = "root"; $password = ""; $db = "data_estudiantes"; // Create connection $conn = new mysqli($servername, $username, $password, $db); // Check connection if ($conn->connect_errno) {...
asked by 27.09.2017 / 06:56
1
answer

DatatTables Laravel 5.4

I'm trying to make the Datatables plugin work according to Yajrabox but I can not get it to show anything, it just shows the table but without DataTable options. My code is: ProductosController.php use Yajra\Datatables\Datatab...
asked by 20.09.2017 / 10:25
1
answer

Problem with file submission through ajaxFormData

Good, I have a problem regarding the way you sent file values, how I use ajax in jquery and the jquery-formdata library, I get the error of TypeError: 'slice' called on an object that does not implement interface Blob. I think it's becaus...
asked by 08.09.2017 / 04:05
2
answers

PHP doubt how to generate a counter in the name of a radio button

I have a panel survey manager where I add, edit and delete dimensions and questions of the survey, through this the survey that contains 4 dimensions, in a total of 21 questions and with a likert scale, is applied. My problem is based on plac...
asked by 07.09.2017 / 22:21