[PHP-WIN] Re: Failed to connect to mailserver with IIS

2005-01-12 Thread forenpw
I could solve the problem! It was the antivirus, who blocked php!!! Good to know! :-) pw "Forenpw" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hello, > > I installed PHP4.3.10 on IIS/win2000! > The settings in php.ini is correct, I use the same smtp for my e-Mail > dddre

Re: [PHP-WIN] Re: Failed to connect to mailserver with IIS

2005-01-12 Thread Zouari Fourat
what about the virtual smtp server of IIS ? u should connect to that vs after configuring it to relay on an external smtp server, as i know u cant connect directly to an external smtp, u should pass by the vs (take a look at smart host and relay options in the vvs of IIS) On Wed, 12 Jan 2005 09:5

Re: [PHP-WIN] Re: help in understanding string / integer concatenation

2005-01-12 Thread Raymond Still
Hello, Thanks to Mike, Davide and Mihai! Makes sense now! Ray On Wed, 12 Jan 2005 08:27:47 +0100, Davide wrote: > > To understand how it works see at 'Operator precedence' > item in the manual. > Regards. > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, visit: http://

[PHP-WIN] Undefined variable

2005-01-12 Thread Louis Young
Hi there I'm getting the following error regardless of whether register_globals is on or off. *Notice*: Undefined variable: button1 in *C:\Program Files\Apache Group\Apache2\htdocs\spar\admin\login.php* on line *28 Here's the code for the entire page: Kwikpay

[PHP-WIN] Re: Undefined variable

2005-01-12 Thread Jason Barnett
Louis Young wrote: Hi there I'm getting the following error regardless of whether register_globals is on or off. *Notice*: Undefined variable: button1 in *C:\Program Files\Apache Group\Apache2\htdocs\spar\admin\login.php* on line *28 You don't need to post the entire page, oy vey that was long!

RES: [PHP-WIN] Undefined variable

2005-01-12 Thread Rafael Soares
You must disable "Notices" in php.ini Look for the line "error_reporting =E_ALL", comment it and uncomment ";error_reporting = E_ALL & ~E_NOTICE". This is not na error, this is a notice. Good for development, but don't affects execution. See ya, happy new year! -Mensagem original- De:

[PHP-WIN] HTML in PHP to a File

2005-01-12 Thread MikeA
I have a PHP file that outputs HTML to the Internet to a user. The user also wants to be able to print that output to a printer. The user wants it formatted with page breaks in the proper place and so on. Using one PHP script to do both, short of a line to display and a line to print, is ther