gpt4 book ai didi

mysql - 我的描述已缩短

转载 作者:行者123 更新时间:2023-11-29 08:20:03 24 4
gpt4 key购买 nike

大家好,我创建了一个表单,只需将项目的描述上传到数据库,但是当我回显该内容时,它缩短了描述,我的描述是 500 个单词,而我只看到 100

<?php

include('config.inc');
// Connect to the database
$dbLink = $con;

// Gather all required data

$description = mysql_real_escape_string($_POST['description']);

// Create the SQL query
$query = "
INSERT INTO `paid_reports` (

`description`,

)
VALUES (

'{$description}',

)";

// Execute the query
$result = $dbLink->query($query);


// Close the mysql connection
$dbLink->close();
}
else {
echo 'Error! A file was not sent!';
}

MySql:表

0   description tinyblob    0   0   0       

有什么想法吗?

请不要辱骂我,我来这里寻求帮助,我正在寻求帮助。 :)

最佳答案

TINYBLOB holds a maximum of 255 bytes 。这很可能是你的问题。将其更改为 BLOB 应该没问题。

关于mysql - 我的描述已缩短,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19646781/

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