[PHP-WIN] Can't Download PHP

2002-08-31 Thread Sperry Russ
Hello, I am new to PHP and wanted to download it and check it out. I have tried numerous of the mirrors but cannot download at all. I have to download with IE 6.0 and Mozilla 1.1. Any ideas what might be wrong? Thanks, Sperry Russ -- PHP Windows Mailing List (http://www.php.net/) To unsub

php-windows Digest 31 Aug 2002 21:50:21 -0000 Issue 1317

2002-08-31 Thread php-windows-digest-help
php-windows Digest 31 Aug 2002 21:50:21 - Issue 1317 Topics (messages 15612 through 15623): Re: mail() does not work. Help please... 15612 by: Aleksandar Skodric Re: mail() I get crazy from this... 15613 by: Aleksandar Skodric 15615 by: Aleksandar Skodric 15

Re: [Fwd: Re: [PHP-WIN] generating an automated mail .......]

2002-08-31 Thread Manuel Lemos
Hello, On 08/31/2002 10:44 AM, M. Hockings wrote: > This makes me wonder if it is just as easy to send an email containing > the results of some computation. Either an attached file or inline. > Would you have to read the content of the file into a variable and send > it as the body or can it

Re: [PHP-WIN] mail server on windows

2002-08-31 Thread DL Neil
krizz, Apache is a web server. What you need is an SMTP (outbound email) server. Check the PHP.INI. There are two settings to make. One of them should be the same email server that you use for sending email from Outlook Express. Regards, =dn > I have an apache server for windows, for testing

[PHP-WIN] mail server on windows

2002-08-31 Thread krizz
I have an apache server for windows, for testing my php scripts. My problem is with testing the mail function. Anyone knows a way for windows and an apache server? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[Fwd: Re: [PHP-WIN] generating an automated mail .......]

2002-08-31 Thread M. Hockings
I meant to send this to the list for everyone's benefit, not just to Aleksandar directly. Need to pay more attention to where the email is address when responding, sigh.. Mike Original Message Subject: Re: [PHP-WIN] generating an automated mail ... Date: Sat, 31 Aug 20

Re: [PHP-WIN] generating an automated mail .......

2002-08-31 Thread Aleksandar Skodric
Mail() should be just fine... $subject = "Confirmation... sth"; $body = "Your username is: $username. Your pass is: $pass"; mail($to, $subject, $body); Cheers, Alex - Original Message - From: "toby z" <[EMAIL PROTECTED]> To: "php hlp list" <[EMAIL PROTECTED]> Sent: Saturday, August 31

[PHP-WIN] generating an automated mail .......

2002-08-31 Thread toby z
hi guys i want to send an automated mail when a person cliks on the submitt button of the membership form carrying his password and confirming his email the problem is i have absolutuley no clue which function should i use should it be mail() or imap_mail() or sumthing else pleeez help

Re: [PHP-WIN] Is there a PHP-WIN FAQ?

2002-08-31 Thread Aleksandar Skodric
Well, I think that in every mail next to unsubsribe info should be also added where to fin FAQ... : ) Cheers, Alex - Original Message - From: "Ross Fleming" <[EMAIL PROTECTED]> To: "PHP Windows mailing list" <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 2002 5:02 PM Subject: [PHP-WIN]

Re: [PHP-WIN] mail() I get crazy from this...

2002-08-31 Thread Aleksandar Skodric
the best thing to do then is to install your own mail server. There plenty of them on the markt. Most of them come with 15-30 day free trial, so you don't have to spend money on sth you don't like... Alex - Original Message - From: "Peter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: [PHP-WIN] mail() I get crazy from this...

2002-08-31 Thread Aleksandar Skodric
No, there is always an solution : ) You could apply for the account at some ISP so that you could use their mail services. Or, check on the web for mail servers and install one. I have also XP with PHP/MySQL and also my own DNS and MAIL server... Ans as you can read my mail know, it seems it is

Re: [PHP-WIN] Capturing IP Address

2002-08-31 Thread Aleksandar Skodric
$address = server["remote_addr"] and then just pass the address to your DB - Original Message - From: "Richard Black" <[EMAIL PROTECTED]> To: "'James Meers'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 2002 2:13 PM Subject: RE: [PHP-WIN] Capturing IP Address >

Re: [PHP-WIN] mail() I get crazy from this...

2002-08-31 Thread Aleksandar Skodric
OK, let me first explain how smtp works (as Aerosmtih would say: you have to learn to crawl, before you learn to walk...): when you compose your message in PHP it is beeing passed to the SMTP server that is defined in php.ini. SMTP shall then pass the message to the recepient. As far as I unders

Re: [PHP-WIN] mail() does not work. Help please...

2002-08-31 Thread Aleksandar Skodric
SMTP and POP servers are used to send and receive mails. In most of the cases, people use SMTP and POP for mail. As I said before, you can use smtp from your provider, or install you own mail server, which will then give you your own SMTP and POP servers. so in php.ini you should then type in you

php-windows Digest 31 Aug 2002 09:08:10 -0000 Issue 1316

2002-08-31 Thread php-windows-digest-help
php-windows Digest 31 Aug 2002 09:08:10 - Issue 1316 Topics (messages 15606 through 15611): Help on new install please .. 15606 by: David Tod Sigafoos 15607 by: dash php 15608 by: David Tod Sigafoos 15609 by: dash php 15610 by: David Tod Sigafoos Re:

Re: [PHP-WIN] mail() does not work. Help please...

2002-08-31 Thread Aleksandar Skodric
Hi, you said that you don't have a provider, so I suppose that you do not have any smtp server you could use... You have two options, register with some provider so that you could use their SMTP server (smtp server sends mail). Or, install your own mail server... Cheers, Alex - Original M