我正在尝试创建一个页面,可以在其中更新MySQL数据。我希望“当前内容”在一个框中已经可见,以便可以对其进行更新。但是盒子太小了。
我尝试使用输入,但是它只能在一行上显示,我要更新的数据很长。我尝试使用textarea,但似乎无法正常工作。
<input type="text" name="comment" value="<?php echo $currentCategory['comment']; ?>" />
<input type="submit" name="submit" value="Save Review" />
````````````````````````````````````````````````````````
<textarea type="text" name="comment" value="<?php echo $currentCategory['comment']; ?>" />
</textarea>
I want the paragraph to fit in the box.
答案 0 :(得分:2)
您按照注释中的指示错误地编写了代码。您应该这样写:
zz[0][1], zz[1][1], ZZ[2][1]
如果您希望文本区域字段不可编辑,请添加#include <stdio.h>
#include <stdlib.h>
class Base {
public:
Base() {
printf("CalssBase\n");
}
};
class A : public Base {
public:
A() {
printf("CalssA\n");
}
};
class REG_A {
public:
static Base* newInst() {
return new A();
}
};
Base* p;
#define CREATE(name) \
p = REG_##name::newInst();
int main(void) {
CREATE(A);
return 0;
}
<textarea type="text" name="comment"/>
<?php echo $currentCategory['comment']; ?>
</textarea>