[PHP] external data saving

2001-03-08 Thread Petr Jza

Hi,
I have one question, please. Can anybody  help me with external data saving?
I require to save the user data (I suppose data will be in the text format)
from user (from his computer) to a database server. And I want not use
ActiveX technology because it must run even under Netscape. Are there
functions for work with files in Javascript?

Thank you very much.
Lot of regards, PETER



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] external data saving

2001-03-08 Thread Michael Hall


Petr:

I'm not exactly clear about what you want to do, but ...

PHP can process user data and save it to databases. This is probably what
PHP does best. Javascript has nothing to do with this process (but you
can use it in your PHP pages if you want).

All I know about ActiveX is that it is a M$ technology that costs $$$ for
the software involved and it is not as easy to use as PHP.

Mick


On Fri, 9 Mar 2001, [iso-8859-2] Petr Jùza wrote:

 Hi,
 I have one question, please. Can anybody  help me with external data saving?
 I require to save the user data (I suppose data will be in the text format)
 from user (from his computer) to a database server. And I want not use
 ActiveX technology because it must run even under Netscape. Are there
 functions for work with files in Javascript?
 
 Thank you very much.
 Lot of regards, PETER
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] external data saving

2001-03-08 Thread Andrew Halliday

This could be done in one of several ways:

- form : what you sound like you want to do seems prettey simple - why is it
not doable with a form?
- file upload : this seems more like what you are looking for ... use the
commands in Chapter 19 (File Uploads) of the PHP manual

The advantage with a form is that you can send it straight to the
database...as opposed to uploading a file, which is a lot more fiddly.  You
have to upload the file, recover it from the temporary area, and then
resumably you are going to want to parse it - which is where the effort
factor can get ugly :)

More specs on what you wanted would be good.

AndrewH

- Original Message -
From: "Petr Jza" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, March 09, 2001 9:42 AM
Subject: [PHP] external data saving


 Hi,
 I have one question, please. Can anybody  help me with external data
saving?
 I require to save the user data (I suppose data will be in the text
format)
 from user (from his computer) to a database server. And I want not use
 ActiveX technology because it must run even under Netscape. Are there
 functions for work with files in Javascript?

 Thank you very much.
 Lot of regards, PETER



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]