[PHP] Re: Here is a email

2002-09-06 Thread Kai Hinkelmann
This one is in the wrong place... please ignore... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sending email with linefeeds

2002-09-06 Thread Kai Hinkelmann
8859-1" X-UIDL: _7F!!bMh!!~Ea"!9Bn"! first line second line third line the three lines are seperated with 0d0a, just as outlook would seperate them but the lines are not shown as a stack but as ONE line. Kai "Erwin" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [E

[PHP] Here is a email

2002-09-06 Thread Kai Hinkelmann
Thanks for your answer. Here is a genereted email: Return-Path: <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] Received: (qmail 21481 invoked from network); 6 Sep 2002 15:47:03 - Received: from notused.i-dea.de (HELO mail.e-h.de) (62.26.122.219) by ns.i-dea.de with SMTP; 6 Sep 2002 15:

[PHP] sending email with linefeeds

2002-09-06 Thread Kai Hinkelmann
Hi, we are sending plain-text-emails from php not using the mail-command but with port-operations. Everything works fine BUT outlook 2000 eats the linefeeds. We tried several things: copying the header from an original (functional) email from outlook, sending with \n or \r\n to seperate header-in

[PHP] Thanks - got it

2002-08-12 Thread Kai Hinkelmann
Hi, Phil, Excuse me, you was right. I changed the mapping for the server but not for the directory. Now everything works fine. Thanks again. Bye Kai "Phil Driscoll" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Monday 12 August 2002 3:52 pm, Adam V

Re: [PHP] Executing a file with rtf-extension

2002-08-12 Thread Kai Hinkelmann
Thanks but since this one is a testserver there is only one webnode and the script runs (or runs not :-( ) in this node. Bye Kai "Phil Driscoll" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Monday 12 August 2002 3:52 pm, Adam Voigt wrote: > My gues

Re: [PHP] Executing a file with rtf-extension

2002-08-12 Thread Kai Hinkelmann
do except not name your PHP files .rtf. Since, each person > who comes to your site will most likely have .rtf set as > a Rich Text Document and will try and interpret it. > > Adam Voigt > [EMAIL PROTECTED] > > On Mon, 2002-08-12 at 11:44, Kai Hinkelmann wrote: > > Hi, > &

[PHP] Executing a file with rtf-extension

2002-08-12 Thread Kai Hinkelmann
Hi, I want to execute a php-script, which file-extension ist .rtf. Though I entered .rtf in the mmc->iis-configuration as a fileextension for "php.exe %s %s" (and restarted the service) the server doesn't start php but sending the script uninterpreted back to client (in this case: ms-word). When

[PHP] Re: How to post from a php script

2002-08-12 Thread Kai Hinkelmann
Create a form only with hidden-fields (your values) and no visible fields or buttons. The "action=" is set to the next file, the method ist set to POST (of course). Don't use php-header to redirect but javasript. If you want to redirect immediately you can write "onLoad=document.forms[0].submit()"