gpt4 book ai didi

php-mysql 数据表与数据表服务器处理 ssp.class.php 脚本

转载 作者:行者123 更新时间:2023-11-29 21:53:04 27 4
gpt4 key购买 nike

我正在尝试使用 [Datatables][1] Jquery 插件创建数据网格,并使用提供的 ssp.class.php 在服务器上处理它。 。它确实有效,但是当我想从多个表中获取数据时我遇到了问题。我用过The modified form由 emram 创建。我已按照步骤操作,但仍然收到类似(无效字符串偏移量 0)之类的错误,并且同一类似乎是工作人员。这是我的代码。

<?php

$table ="property";
$primaryKey = 'property.propertyID';

// Array of database columns which should be read and sent back to DataTables.
// The `db` parameter represents the column name in the database, while the `dt`
// parameter represents the DataTables column identifier. In this case simple
// indexes
/* $columns = array(
array( 'db' => 'propertyNAme', 'dt' => 0 ),
array( 'db' => 'propertyAddress', 'dt' => 1 ),
array( 'db' => 'propertyCode', 'dt' => 2 ),
array( 'db' => 'propertyRegistrationNumber', 'dt' => 3 ),
array( 'db' => 'createdAt','dt' => 4,'formatter' => function( $d, $row ) {return date( 'jS M y', strtotime($d)); }),
array('db' => 'propertyPrice', 'dt'=> 5,'formatter' => function( $d, $row ) { return '$'.number_format($d); } )
);*/
$sql_details = array(
'user' =>APP_SYSTEM_DB_USER_NAME,
'pass' => APP_SYSTEM_DB_USER_PASSWORD,
'db' => APP_SYSTEM_DB_NAME,
'host' => APP_SYSTEM_DB_HOST
);
$columns = array(
array( 'db' => 'p.propertyName', 'dt' => 0, 'field' => 'Property Name' ),
array( 'db' => 'p.propertyAddress', 'dt' => 1, 'field' => 'Address' ),
array( 'db' => 'p.propertyCode', 'dt' => 2, 'field' => 'Property Code' ),
array( 'db' => 'p.propertyRegistrationNumber', 'dt' => 3, 'field' => 'Reg No'),
array( 'db' => 'p.propertyPrice', 'dt' => 4, 'field' => 'email' ),
array( 'db' => 'p.createdAt', 'dt' =>5,'field' => 'date','formatter' => function( $d, $row ) {return date( 'jS M y', strtotime($d)); }),
array( 'db' => 'c.countryName', 'dt' => 6, 'field' => 'Country'));
$joinQuery = " FROM `{$table}` AS p LEFT JOIN country AS c ON (c.countryID = p.propertyCountryID)";
$extraWhere="";
$data= \app\models\datatable\helper\SSP::simple($_GET, $sql_details,$table, $primaryKey, $columns,$joinQuery, $extraWhere);
echo json_encode($data)

最佳答案

谢谢!我自己已经弄清楚了。在调用之前我正在清理我的 $_GET 变量

$_GET =$validator->sanitize($_GET)->xss_clean($_GET); 
SSP::simple($_GET...)
我刚刚注释掉了这段代码并且它起作用了。现在可以使用了 –

关于php-mysql 数据表与数据表服务器处理 ssp.class.php 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33441337/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com