[PHP] Re: Passing LARGE (1500-2500 chars) variable from JScript to PHP?

2001-08-12 Thread Inércia Sensorial
I don't think it is possible to pass so much chars in a href, or URL for the matter. Is it really necessary? Couldn't you first write somewhere (db/file) those chars and retrieve it later, referencing it on the href? -- Julio Nobrega. 2B||!BB - That's the question. News.Fbcc.Com [EMAIL

[PHP] Re: Passing LARGE (1500-2500 chars) variable from JScript to PHP?

2001-08-12 Thread news.fbcc.com
Wow, seems pretty obvious now that you've said it, Richard, but then that's how it always works. Yes, I can just write it all to a file and then upload that to the server then can grab it from there with PHP. Ahhh, life is GOOD! Worst case, the the user will have to click twice, once for the

[PHP] Re: Passing LARGE (1500-2500 chars) variable from JScript to PHP?

2001-08-12 Thread news.fbcc.com
Thank you for the response Julio! That's what I will do is write to a file and then upload that file. From there I can have PHP get to that file for insert/update into a MySQL database. Thanks much! Andre InéRcia Sensorial [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Re: Passing LARGE (1500-2500 chars) variable from JScript to PHP?

2001-08-12 Thread chrissl \[christopher czettel\]
all you need is a unvisible iframe (IFRAME width=0 height=0 name=framename ... /IFRAME) and give it a name. then, you do a framename.write('data') with data in this format: form method=post action=youphpscript.php name=formname input type=hidden name=youvarname value=youdatatosend /form