大家好我已经创建了一个表单,只是简单地将一个项目的描述上传到数据库,但当我回复那些内容时,它缩短了描述,我的描述是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
任何想法?
请不要虐待我来到这里寻求帮助我正在寻求帮助。 :)
答案 0 :(得分:2)
TINYBLOB
holds a maximum of 255 bytes。这可能是你的问题。将其更改为BLOB
,您应该没问题。
答案 1 :(得分:0)
从tinyblob
切换到text
,你会没事的。