Specs
MSSQL SERVER 2000 Enterprise
PHP 4.0.4
HTML 4.0
Netscape Enterprise Server 3.6
*******************The Goal***************
I want to insert into a database field more than 16,000 characters.
table
doc_number (varchar)
doc_notes (text)
1.I will have the user enter the data into <textarea name="data">
2.I will have the user preview the data they entered in the <textarea name="data"> on the next page via echo $data;
- after the user previews the data the user will submit the data via <input type="hidden" name="insert_data" value="$data">
*****************the problem**************
1.I can not find a datatype in MSSQL server that can accept more than 8060 characters
- also is there a limit on how large a variable from a <input type="hidden"> can pass to another page?
Thanks in advance