temporary workaround needed
Posted: 2017-10-01 18:47
In my ajax_combo.php file the following will not work with php5.6 or higher:
// receive and validate user input
$table_name = $_REQUEST['t'];
$field_name = $_REQUEST['f'];
$search_id = makeSafe(iconv('UTF-8', datalist_db_encoding, $_REQUEST['id']));
$selected_text = $_REQUEST['text'];
$returnOptions = ($_REQUEST['o'] == 1 ? true : false);
$page = intval($_REQUEST['p']);
if($page < 1) $page = 1;
$skip = $results_per_page * ($page - 1);
$search_term = makeSafe(iconv('UTF-8', datalist_db_encoding, $_REQUEST['s']));
This is due to the iconv() being unsupported.
How can I change this in the short term until I can open and save my appgini project in the current version of appgini and get current export of the php code.
Also, what version of php does the current version of appgini export?
Thanks all.
// receive and validate user input
$table_name = $_REQUEST['t'];
$field_name = $_REQUEST['f'];
$search_id = makeSafe(iconv('UTF-8', datalist_db_encoding, $_REQUEST['id']));
$selected_text = $_REQUEST['text'];
$returnOptions = ($_REQUEST['o'] == 1 ? true : false);
$page = intval($_REQUEST['p']);
if($page < 1) $page = 1;
$skip = $results_per_page * ($page - 1);
$search_term = makeSafe(iconv('UTF-8', datalist_db_encoding, $_REQUEST['s']));
This is due to the iconv() being unsupported.
How can I change this in the short term until I can open and save my appgini project in the current version of appgini and get current export of the php code.
Also, what version of php does the current version of appgini export?
Thanks all.