This commit is contained in:
144 changed files with 20649 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?php
class DataForms{
public function __construct($db)
{
$this->conn = $db;
}
function to_UTF8($arr) {
foreach($arr as $k=>$v){
$v=iconv('Windows-1251','UTF-8',$v);
$arr[$k]=$v;
}
return $arr;
}
function Query()
{
$result=[
1,2,3
];
return $result;
}
}