Всем доброго времени суток. Прошу помощи у знающих. По мануалам пытаюсь написать скрипт, который будет выполнять множество подставленных запросов и выводить данные о выполненной работе. Все что получилось собрать,но к сожалению ничего не получается.
<?php
@set_time_limit(0);
@error_reporting(E_ALL ^ E_WARNING ^ E_DEPRECATED ^ E_NOTICE);
@ini_set('error_reporting', E_ALL ^ E_WARNING ^ E_DEPRECATED ^ E_NOTICE);
define('DATALIFEENGINE', true);
define('AUTOMODE', true);
define('ROOT_DIR', dirname(__FILE__));
define('ENGINE_DIR', ROOT_DIR . '/engine');
include ENGINE_DIR . '/data/config.php';
date_default_timezone_set($config['date_adjust']);
if (file_exists(ENGINE_DIR . '/classes/plugins.class.php')) {
require_once (ENGINE_DIR . '/classes/plugins.class.php');
require_once (DLEPlugins::Check(ENGINE_DIR.'/modules/functions.php'));
} else {
include ENGINE_DIR . '/classes/mysql.php';
include ENGINE_DIR . '/data/dbconfig.php';
include ENGINE_DIR . '/modules/functions.php';
}
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Выполняем запросы для замены текста в базе</title>
</head>
<body>
<style>
.container{width: 700px;height: 500px;overflow-y: auto;margin: 100px auto;background-color: #000;padding: 20px;}
.ok{color: #50E3C2;}
.error{color: red;}
p{margin: 0 0 15px;line-height: 18px;color: #ccc;font: 12px Menlo, "DejaVu Sans Mono", "Lucida Console", monospace;}
a{color: #FF2E88}
</style>
<div class="container">
<p>Выполняем запросы для замены текста в базе
<br> ---------------------------------</p>
<?php
$solll[]='UPDATE dle_post SET short_story = REPLACE(short_story, "&vert;", "|");';
$solll[]='UPDATE dle_post SET full_story = REPLACE(full_story, "&vert;", "|");';
$solll[]='UPDATE dle_post SET title = REPLACE(title, "&vert;", "|");';
$solll[]='UPDATE dle_post SET keywords = REPLACE(keywords, "&vert;", "|");';
$solll[]='UPDATE dle_post SET tags = REPLACE(tags, "&vert;", "|");';
$solll[]='UPDATE dle_post SET descr = REPLACE(descr, "&vert;", "|");';
$solll[]='UPDATE dle_post SET metatitle = REPLACE(metatitle, "&vert;", "|");';
# ----------------------
if (isset($_POST['submit'])) {
$sql = $conn->query("$solll");
if ($sql)
print($sql);
else
print("<p>#<span class='error'>{$conn->error}</span></p>");
}
# ----------------------
?>
<form action="" method="POST" target="_self">
<button type="submit" name="submit" />Выполнить</button>
</form>
</div>
</body>
</html>
Подскажите что делаю не так. Спасибо