Handle exceptions.

This commit is contained in:
Igor Barkov (iwork)
2020-06-23 14:31:57 +03:00
parent b51828ba2f
commit e6056ae34a
2 changed files with 34 additions and 21 deletions

View File

@@ -15,28 +15,25 @@ include_once "config.php";
$msg = filter_input(INPUT_POST,'msg');
$uid = $_SESSION['uid'];
if ($msg) {
try {
db::c()->query('INSERT INTO `chat` (`uid`, `msg`) VALUES (?i, "?s")', $uid, $msg);
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo "DB Error: ". $e->getMessage() . PHP_EOL;
echo "File: " . $e->getFile() . "[".$e->getLine()."]". PHP_EOL;
}
mysql_error_handler(db::c()->query('INSERT INTO `chat` (`uid`, `msg`) VALUES (?i, "?s")', $uid, $msg));
}
function show_messages()
{
try {
$chat = db::c()->query('
SELECT
`msg`,
`msgdate`,
(SELECT `login` FROM `users` WHERE `users`.`id` = `uid`) AS `from`,
`type`
FROM `chat` ORDER BY `id` LIMIT 50');
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo "DB Error: ". $e->getMessage() . PHP_EOL;
echo "File: " . $e->getFile() . " (".$e->getLine().")". PHP_EOL;
}
function show_messages(){
mysql_error_handler($chat = db::c()->query('
SELECT msg, msgdate, (SELECT login FROM users WHERE users.id = uid) AS from, type
FROM `chat` ORDER BY `id` LIMIT 50'));
// try {
// $chat = db::c()->query('
// SELECT
// `msg`,
// `msgdate`,
// (SELECT `login` FROM `users` WHERE `users`.`id` = `uid`) AS `from`,
// `type`
// FROM `chat` ORDER BY `id` LIMIT 50');
// } catch (\Krugozor\Database\Mysql\Exception $e) {
// echo "DB Error: ". $e->getMessage() . PHP_EOL;
// echo "File: " . $e->getFile() . " (".$e->getLine().")". PHP_EOL;
// }
while ($message = $chat->fetch_assoc()) {
$d = new DateTime($message['msgdate']);