有没有人有过为博客制作撰写表单的经历?
我有这个问题在我的本地主机上运行得很好,但是当我尝试在服务器上上传时,事情没有解决。
我的问题是,当我在 localhost 上运行时,它接受无限数量的字符并作为“文本”数据类型保存到数据库,但在站点上运行它只接受 10,000 个字符,除此之外它返回错误。这里可能是什么问题?
这是我的代码。
<form action="savepost.php" method="POST">
<fieldset style="width:600px; height:580px">
<br><strong>Title</strong> <input id="posttitle" name="posttitle" type="text">
<br><br><strong>Content</strong>
<br><textarea id="postform" name="postform" style="width:600px; height:450px; resize: none"></textarea>
<br><input type="submit" value="Post" id="postbutton"/>
</fieldset>
</form>
savepost.php 基本上是一个 mysql 插入过程。