0

我正在尝试复制这个phpGrid使用演示wamp

我当前的 PHP 版本是5.6.31.

当我尝试查看Products.php页面时显示致命错误:

在第 16 行的 C:\wamp64\www\inventory-manager-master\inventory-manager-master\products.php 中找不到类 'phpGrid\C_DataGrid'

难道是我的php版本较低?

我应该升级到 Php7 还是最好的解决方案是什么?

提前致谢。

对我放轻松,因为我是菜鸟。

代码如下。

<?php
use phpGrid\C_DataGrid;

include_once("phpGrid/conf.php");
include_once('inc/head.php');
?>

<h1>My Inventory Manager</h1>

<?php
$_GET['currentPage'] = 'products';
include_once('inc/menu.php');
?>

<?php
$dgProd = new C_DataGrid('SELECT * FROM products', 'id', 'products');
$dgProd->set_col_hidden('id', false);
$dgProd->enable_autowidth(true)->set_dimension('auto', '200px')-
>set_pagesize(100);
4

1 回答 1

0

免费的 phpGrid Lite 不需要命名空间

use phpGrid\C_DataGrid;

事实上,如果你尝试它会抛出一个错误。

于 2018-02-17T03:13:36.430 回答