gpt4 book ai didi

mysql - 在 MySQL 数据库中测试编码的应用程序未提交到表

转载 作者:行者123 更新时间:2023-11-29 14:19:42 32 4
gpt4 key购买 nike

我从 this page 收到了下面的申请这样我就可以在 MySQL 数据库上测试字符编码。我已经使用同一页面上列出的查询创建了数据库,即:

CREATE TABLE `texts` (
`id` INT(11) unsigned NOT NULL AUTO_INCREMENT,
`content` TEXT,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

并输入了连接到我的数据库的详细信息,我确信这些信息是正确的。但是,由于某种原因,没有任何内容提交到我的数据库,当我手动向数据库添加条目时,我在“输出测试”下方收到以下错误:

Notice: Undefined index: text in /home/..../php/encoding_test.php on line 56

我想知道是否有人能发现问题所在?

<?php

error_reporting(E_ALL);
ini_set('display_errors', true);

header('Content-Type: text/html; charset=utf-8');

$pdo = new PDO('mysql:dbname=encoding_test;host=localhost', 'user', 'pass',
array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));

if (!empty($_POST['text'])) {
$stmt = $pdo->prepare('INSERT INTO `texts` (`text`) VALUES (:text)');
$stmt->execute(array('text' => $_POST['text']));
}

$results = $pdo->query('SELECT * FROM `texts`')->fetchAll(PDO::FETCH_ASSOC);

?>
<!DOCTYPE html>

<html>
<head>
<title>UTF-8 encoding test</title>
</head>
<body>

<h1>Display test</h1>

<p>
A good day, World!<br>
Schönen Tag, Welt!<br>
Une bonne journée, tout le monde!<br>
يوم جيد، العالم<br>
좋은 일, 세계!<br>
Một ngày tốt lành, thế giới!<br>
こんにちは、世界!<br>
</p>

<h1>Submission test</h1>

<form action="" method="post" accept-charset="utf-8">
<textarea name="text"></textarea>
<input type="submit" value="Submit">
</form>

<?php if (!empty($_POST['text'])) : ?>
<h2>Last received data</h2>
<pre><?php echo htmlspecialchars($_POST['text'], ENT_NOQUOTES, 'UTF-8'); ?></pre>
<?php endif; ?>

<h1>Output test</h1>

<ul>
<?php foreach ($results as $result) : ?>
<li>
<pre><?php echo htmlspecialchars($result['text'], ENT_NOQUOTES, 'UTF-8'); ?></pre>
</li>
<?php endforeach; ?>
</ul>

</body>
</html>

最佳答案

ALTER TABLE `texts` CHANGE `content` `text` TEXT;

根据您的 PHP 代码,您使用表 texts,因为它包含名为 text 的列,但在您的架构中,该列的名称为 content >因此,您需要使用上述查询将列 content 重命名为 text

关于mysql - 在 MySQL 数据库中测试编码的应用程序未提交到表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11955993/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com