slot gacor
slot gacor
Premier League Standings - Bootstrap 4.5 theme - eXtended CRUD & Data Management System
DEMO SITE v1.7.28

Premier League Standings Bootstrap 4.5 theme

Premier League Standings

HIDE CODE
<?php
    $xcrud = Xcrud::get_instance();
    $xcrud->table('standings');
    $xcrud->columns('logo,team_id,played,won,drawn,lost,goals_for,goals_against,points');
    $xcrud->label('team_id', 'Team')->relation('team_id', 'teams', 'team_id', 'team_name');

    $xcrud->unset_add();
    $xcrud->unset_edit();
    $xcrud->unset_remove();
    $xcrud->unset_view();
    $xcrud->unset_search();
    $xcrud->unset_limitlist();
    $xcrud->limit(20);

    $xcrud->order_by("points","desc");
    $xcrud->column_class('team_id','align-left font-bold');
    $xcrud->highlight('points','>=','23','#9FD58C');
    $xcrud->highlight('lost','=','0','#B3968B');
    $xcrud->highlight('lost','=','1','#D2E3D9');
    $xcrud->highlight_row('points','>=','26','#D5BEB5');

    
    $xcrud->change_type('logo', 'image', false, array(
    'width' => 450,
    'path' => '../uploads/gallery',
    'thumbs' => array(array(
            'height' => 55,
            'width' => 120,
            'crop' => true,
            'marker' => '_th'))));

    echo $xcrud->render();
?>
xCRUDQuery error: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'xcrud1_7_v7.standings' doesn't exist
SHOW COLUMNS FROM `standings`