waddaya mean? Sticky as in stuck in the same position on the screen?
If so use CSS 'position: fixed', otherwise explain further.
I don't get the table thing. Can't you use CSS?
I'm not going to try and dissect your code, but:
if(isset($_POST[$this->name])&($this->isSticky))
looks like it should be:
if(isset($_POST[$this->name])&&($this->isSticky))
diafol
Rhod Gilbert Fan (ardav)
7,800 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
I think it may be due to the fact that textareas don't use the 'value' attribute - they have content not 'values'. Input tags like textboxes use the 'value' attribute to store data:
<input type="text" value="hello" ... />
<textarea ...>hello</textarea>
hahahahaha??
diafol
Rhod Gilbert Fan (ardav)
7,800 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080