php-windows Digest 23 May 2009 09:00:33 -0000 Issue 3628

2009-05-23 Thread php-windows-digest-help
php-windows Digest 23 May 2009 09:00:33 - Issue 3628 Topics (messages 29344 through 29349): Re: Looking for code for an alphabetic menu in php 29344 by: Lester Caine 29345 by: Sascha Meyer 29346 by: James Crow 29347 by: Richard Quadling 29348 by:

[PHP-WIN] vbscript not running in php but running as a vbs file

2009-05-23 Thread Rui
hi im having a problem with a vbscript that sends mail . Set objMessage = CreateObject(CDO.Message) objMessage.Subject = mysubject objMessage.From = mymail objMessage.To = destinator objMessage.TextBody = mytextbody

Re: [PHP-WIN] vbscript not running in php but running as a vbs file

2009-05-23 Thread Sascha Meyer
Hi Rui, Rui wrote: hi im having a problem with a vbscript that sends mail . first of all, why do you try to send a mail through the use of a vbs file? Consider switching to php's mail function (http://www.php.net/mail), with your preferred mail server set up in php.ini (or you can

Re: [PHP-WIN] vbscript not running in php but running as a vbs file

2009-05-23 Thread Sascha Meyer
Doh! Now I found the error: if i add this to a php page with the tags SCRIPT LANGUAGE=VBScript .. /SCRIPT these lines will not be rendered by the server, the will directly be send to the browser, so the browser will try to execute this part of code (and only IE will process vbscript

[PHP-WIN] Re: vbscript not running in php but running as a vbs file

2009-05-23 Thread Geoff Lane
On Saturday, May 23, 2009, Sascha Meyer wrote: Doh! Now I found the error: if i add this to a php page with the tags SCRIPT LANGUAGE=VBScript .. /SCRIPT these lines will not be rendered by the server, the will directly be send to the browser, so the browser will try to execute

Re: [PHP-WIN] vbscript not running in php but running as a vbs file

2009-05-23 Thread Rui
hi all thks all for the pointers . sascha for sure you are a PHP Most Value Professional :) i was not aware that i could set the values dynamically with init_set that is way i didnt go for the php mail function as i didnt want to be dependant on php configuration . i will try both vbs