我有一个带有文本表的Mysql数据库,其中包含:
if($("div select[name=responseContentType]", $(this.el)).val() === undefined) {
opts.responseContentType = opts.parent.model.produces[0];
}
else {
opts.responseContentType = $("div select[name=responseContentType]", $(this.el)).val();
}
例如,我输入如下所示,并保存在表格中,如id=int(30) and text=mediumtext;
。
我检索字段:
这是一篇文章。
id=1
This is a new line, with a big space before text.
here contains more info.
我明白了:
$id=GetRow("SELECT text from text_table WHERE id=1");
没有新的行,段落或标签。
我如何检索输入?
THX!