No me carga los datos al datatable

No me carga los datos al datatable

jmhuertafejmhuertafe Posts: 5Questions: 4Answers: 0

Alguien me puede ayudar con el codigo.

soy principiante en esto, pero quiero aprender

sale este error y no me carga los datos de la tabla

DataTables warning: table id=example - Invalid JSON response. For more information about this error, please see http://datatables.net/tn/1

Gracias anticipadas

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 21,336Questions: 26Answers: 4,951
    edited August 2023 Answer ✓

    The place to start is with the troubleshooting steps at the link in the error:
    http://datatables.net/tn/1

    Let us know what you find. This will help us to know where to start looking for the problem.

    Kevin

  • jmhuertafejmhuertafe Posts: 5Questions: 4Answers: 0

    Hola

    Para comentar que ya lo resolvi.

    Aqui una parte de codigo: habia declarado la clase con este nombre

    <?php
    include_once 'conexion.php';
    class Cat_catequista{
    var $catequistas;
    public function __construct(){
    $this->acceso = Conexion::conectar();
    }

    ya la estaba llamando asi:
    <?php
    include '../modelo/Cat_Catequista.php';
    $catequista = new Cat_Catequista();
    if($_POST['funcion']=="listar"){
    $catequista->mostrar();

    Y pues no era es mismo nombre, por lo cual no se ejecutaba.

    Lo comparto por si a alguien le sirve.

    Saludos

Sign In or Register to comment.