Код: Выделить всё
function __construct() {
$this->open_connection();
$this->magic_quotes_active = get_magic_quotes_gpc();
$this->real_escape_string_exists = function_exists("mysqli_real_escape_string");
}
Код: Выделить всё
function loadResultList( $key='' ) {
$cur = $this->executeQuery();
$array = array();
while ($row = mysqli_fetch_object($cur)) {
if ($key) {
$array[$row->$key] = $row;
} else {
$array[] = $row;
}
}
Устарело: функция get_magic_quotes_gpc() устарела в строке 14.
mysqli_free_result() ожидает, что параметр 1 будет mysqli_result, bool задан в строке 59. и в строке 66
ошибка онлайн 62
Я новичок в php, если кто-нибудь может помочь
Я уже перешел на несколько версии PHP и MySQL
Подробнее здесь: https://stackoverflow.com/questions/785 ... s-outdated
Мобильная версия