[PHP] Re: Need help with output from form to .txt file

2004-02-15 Thread Thorben
Kristers Hotmail wrote:

Hi!!

When i send data from a form and there is some special characters like ' " \ php seems to add an extra \ before every special character in the transfer from the form to the point when I put the data in the .txt file where i store it.

It is a guestbook I'm using the script for so it is a bit anoying. I also have a guestbook where I use MySQL as database and I do not have the same problem there.

Esample:

I'm sendeing "hello" from the form

The result I get in my gb.txt file is \"hello\"

Why is that??

Can anyone help me

Regards

Krister
Hi,
there is a function which delete the backslahes.
Before you put the text in the file, do
stripslashes($yourstring)

--
 - RPG Genesis 2004 -
- Make your dreams believable -
   http://www.rpg-genesis.de

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Error with ftp_get()

2004-02-14 Thread Thorben
Oh. Yes. I forget the code.
With an normal FTP-client i can get the file easily.
Ah! I've found the error.
My code was
ftp_get($conn, "tmp", $file, FTP_BINARY);

The var $file is a GET-var, but on my server register_globals is off. So 
i had to write $_GET['file']. It was so easy.


On Fri, 2003-11-14 at 07:33, Thorben wrote:

Warning: ftp_get(): 'RETR ' not understood.

I guess 'RETR' is a message from FTPServer to PHP and PHP don't 
understand it. So, can you tell me, how to avoid this?


When you request (get) a file using the ftp command you send a RETR
command to the ftp server indicating which file you want to retrieve. 
I'm not 100% sure what is going on since there is no code in your post,
but it looks like the RETR command is disabled on the ftp server.  This
means you will not be able to download files.  Try retrieving the file
manually using your favorite ftp client and see what happens.  If you
can post the code you are using we may be able to help better.

--
RPG Genesis 2004
Mach' deine Träume wahr!
   Mach' dein Spiel!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Error with ftp_get()

2004-02-14 Thread Thorben
Hi guys.
It's possible that my english sometimes isn't so good. I'm a small 
german boy.
At the moment i am working on a WebFTP client. All the stuff like 
list,mkdir,rm(dir),put works. But when i use ftp_get() an error appears:

Warning: ftp_get(): 'RETR ' not understood.

I guess 'RETR' is a message from FTPServer to PHP and PHP don't 
understand it. So, can you tell me, how to avoid this?

Yours, Thorm.

--
 - RPG Genesis 2004 -
- Make your dreams believable -
   http://www.rpg-genesis.de

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php