: This article mainly introduces the PHP installation tutorial: FAQs (3). If you are interested in the PHP Tutorial, refer to it. VI,
Q: How can I use the MAIL function to send emails in WINDOWS?
A: php uses the SENDMAIL program to send mails in UNIX/linux. if SENDMAIL is not available in WINDOWS, you can use the SMTP protocol. the specific method is as follows: modify PHP. SMTP in the [mail function] of the INI file.
For example:
[Mail function]
SMTP = public.sta.net.cn; Win32 Only
VII,
Q: php + apache configuration in win9x
"Cannot determine local host name, use servername to set it manually"
If you have an IP address, add the following to httpd. conf:
ServerName http: // your IP address
Example: ServerName http: // 162.105.38.100
The above describes the PHP installation tutorial: FAQs (3), including the content, hope to be helpful to friends who are interested in the PHP Tutorial.