RE: [PHP-WIN] Problem printing on server side

2003-12-04 Thread Darvin Andrioli
From: Ricardo J. Oliveira [mailto:[EMAIL PROTECTED] Hi, When I try to list my printers with the printer_list function with these options PRINTER_ENUM_NETWORK | PRINTER_ENUM_REMOTE the array returned are empty. Hi First the manual says that PRINTER_ENUM_NETWORK and PRINTER_ENUM_REMOTE

Re: [PHP-WIN] /php-4.3.4-Win32/php.exe/index.php not found

2003-12-04 Thread Luis Moreira
Apparently your browser is complaining about INFO.PHP, not PHP.EXE. Do you call INFO.PHP inside INDEX.PHP ? If you do, are you sure it exists and is on the right place ? Luis - Original Message - From: Miroslav Majdan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 03,

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
i acidently sent it Seung Hwan Kang wrote: I guess it's related to slashes... (addslashes) Here is eg. // yourform.html !-- your HTML form -- to subject content from // mailto.php ? $to = addslashes($_POST[to]); $subject = addslashes($_POST[subject]); $content =

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
I guess it's related to slashes... (addslashes) Here is eg. // yourform.html !-- your HTML form -- to subject content from // mailto.php ? $to = addslashes($_POST[to]); $subject = addslashes($_POST[from]); $content = addslashes($_POST[content]); mail($to, $subject, $content, $from); ?

[PHP-WIN] Award Notice

2003-12-04 Thread Greg Ossai
STRITLY CONFIDENTIAL FROM:DR .GREG ossAI, DEAR SIR, I AM DR.GREG OSSAI Ossai AN ACCOUNTANT (FOREIGN PAYMENT DEPT) WITH THE FEDERAL MINISTRY OF TRANSPORT LAGOS- NIGERIA. WITH THE ASSISTANCE OF SOME SENIOR OFFICALS OF THE CENTRAL BANK OF NIGERIA,AND THE MINISTRY OF FINANCE, WE WANT TO

Re: [PHP-WIN] Award Notice

2003-12-04 Thread toby z
what on earth is all this or have i missed somethin here :S :| :[ --- Greg Ossai [EMAIL PROTECTED] wrote: STRITLY CONFIDENTIAL FROM:DR .GREG ossAI, DEAR SIR, I AM DR.GREG OSSAI Ossai AN ACCOUNTANT (FOREIGN PAYMENT DEPT) WITH THE FEDERAL MINISTRY OF TRANSPORT LAGOS-

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
thanks - but sorry no prize there - it makes no difference Alan Seung Hwan Kang [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i acidently sent it Seung Hwan Kang wrote: I guess it's related to slashes... (addslashes) Here is eg. // yourform.html !-- your HTML

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Seung Hwan Kang
ok, u do like to put some html codes in the contents... :) this one should be ok~~~ ? $HTML_H = htmlheadtitlewelcomeM/titlebody; $HTML_B = Geee~; $HTML_T = /bodyhtml; $content = $HTML_H . $HTML_B . $_POST[content] . $HTML_T; mail($_POST[to], $_POST[subject], $content, $_POST[from]); ? Alan

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Mike Quinn
Hi Alan, You have to set the headers to send HTML emails (that could be it!) $header = MIME-Version: 1.0\r\n Content-type: text/html; charset=iso-8859-1\r\n; $address = [EMAIL PROTECTED]; $subject = HTML Email; $content = html stuffstuff/html stuff; mail($address, $subject, $content,

Re: [PHP-WIN] Award Notice

2003-12-04 Thread Alan McDonald
toby - ignore it - it's spam - the famous nigerian letter! Alan Toby z [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] what on earth is all this or have i missed somethin here :S :| :[ --- Greg Ossai [EMAIL PROTECTED] wrote: STRITLY CONFIDENTIAL FROM:DR .GREG

RE: [PHP-WIN] Re: mail($To problem

2003-12-04 Thread Disko_kex
Hi It's a documented bug, and its fixed in the latest release of php (4.3.4). I had the same problem and it works fine now Have a nice day jocke -Original Message- From: Seung Hwan Kang [mailto:[EMAIL PROTECTED] Sent: den 4 december 2003 12:27 To: [EMAIL PROTECTED] Subject:

[PHP-WIN] Problem with mail()

2003-12-04 Thread Gerardo Rojas
I am trying to send mail with the mail() function. My environment is Win2K proffessional. IIS5.0 and my email server is Outlook. This is the error I'm getting when i try to send mail. i have changed the php.ini file for: SMTP = my mail server - Creating socket

php-windows Digest 4 Dec 2003 09:11:30 -0000 Issue 2028

2003-12-04 Thread php-windows-digest-help
php-windows Digest 4 Dec 2003 09:11:30 - Issue 2028 Topics (messages 22304 through 22309): Trouble loading php_mysql.dll 22304 by: CMSMom 22307 by: Seung Hwan Kang uploading files to a web server using ftp 22305 by: Brent Re: Server for PHP and ASP (and MySQL) ??

[PHP-WIN] Re: Problem with mail()

2003-12-04 Thread John
Outlook is not a mail server, it is a mail client. You need to load a mail server on your machine to get php mail() to work. A decent, free one for Windows is Mercury, www.pmail.com. Once that is setup, in php.ini change the SMTP line to SMTP= localhost John Gerardo Rojas [EMAIL PROTECTED]

Re: [PHP-WIN] Re: mail($To problem

2003-12-04 Thread Alan McDonald
thanks Disko_kex - I'll check that out Alan Disko_kex [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi It's a documented bug, and its fixed in the latest release of php (4.3.4). I had the same problem and it works fine now Have a nice day jocke -Original Message-

[PHP-WIN] Re: Problem with mail()

2003-12-04 Thread Alan McDonald
Your SMTP server is denying relay - go the IIS manager, select SMTP and the properties and allow relay for localhost Alan Gerardo Rojas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am trying to send mail with the mail() function. My environment is Win2K proffessional. IIS5.0 and my

php-windows Digest 4 Dec 2003 23:09:37 -0000 Issue 2029

2003-12-04 Thread php-windows-digest-help
php-windows Digest 4 Dec 2003 23:09:37 - Issue 2029 Topics (messages 22310 through 22324): Re: Problem printing on server side 22310 by: Darvin Andrioli mail($To problem 22311 by: Alan McDonald 22315 by: Seung Hwan Kang 22316 by: Seung Hwan Kang