Is it possible to ftp a character string instead of a file?
For exemple if I do:
ftp_put ($conn_id, 'hum.htm', 'hello', FTP_ASCII);
then the file 'hum.htm' would contain the string 'hello'. Is that posible?
Create a temporary file with that string, ftp_put it, and then delete the temporary file.
Diego