Search found 25 matches
- Wed Aug 18, 2004 9:40 am
- Forum: Installation and Configuration
- Topic: PHP.exe or the ISAPI?
- Replies: 0
- Views: 2464
PHP.exe or the ISAPI?
What's the difference between the two? Isapi and the php.exe? Thanks
- Sun Feb 08, 2004 8:43 pm
- Forum: PHP - Code
- Topic: Functions
- Replies: 7
- Views: 704
Functions
Why can't i run functions? Is there a setting on php.ini? thanks!
- Wed Jan 21, 2004 12:05 am
- Forum: PHP - Code
- Topic: MSSQL PHP
- Replies: 3
- Views: 456
- Tue Jan 20, 2004 11:59 pm
- Forum: PHP - Code
- Topic: MSSQL PHP
- Replies: 3
- Views: 456
- Tue Jan 20, 2004 11:30 pm
- Forum: PHP - Code
- Topic: MSSQL PHP
- Replies: 3
- Views: 456
MSSQL PHP
Help... I made a script that access MS SQL using PHP. When I view it on my pc "http://localhost/mssql.php" it works fine. But others try to view it "http://192.168.0.21/mssql.php", it won't appear on their browser, an error html appears instead. The script uses "sa" acc...
- Tue Jan 20, 2004 4:36 am
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
Configuring my IIS/SMTP for mail()
Newbie here... Can somebody walk me through the process of configuring my IIS's SMTP so that I can test my mail form. Im using Windows XP Pro, IIS 5.01, PHP... Thanks in advance... 
- Mon Jan 19, 2004 7:57 pm
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
- Mon Jan 19, 2004 6:31 pm
- Forum: PHP - Code
- Topic: Editing of PHP.iNi
- Replies: 7
- Views: 1272
I am using XP/iiS5.01 and was testing mail(). I was able to send some email to my inbox. The value of SMTP on my php.ini was localhost and i commented out the mail_from. Then when I got back again to test my script, i no longer works. Is there a setting in php.ini or iis or smtp to be able for me se...
- Mon Jan 19, 2004 6:10 am
- Forum: PHP - Code
- Topic: Editing of PHP.iNi
- Replies: 7
- Views: 1272
- Mon Jan 19, 2004 2:38 am
- Forum: PHP - Code
- Topic: Editing of PHP.iNi
- Replies: 7
- Views: 1272
Editing of PHP.iNi
In Windows XP/iiS, if you edit the php.ini; let us say error_reporting turn on from off. Will take effect immediately? Incase not, should I restart the whole pc or the service only? Tnx for help... 
- Mon Jan 19, 2004 2:30 am
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
- Sun Jan 18, 2004 9:55 pm
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
- Sun Jan 18, 2004 9:14 pm
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
- Sun Jan 18, 2004 7:57 pm
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
- Sun Jan 18, 2004 6:59 pm
- Forum: PHP - Code
- Topic: Mail() in IIS5/SMTP
- Replies: 10
- Views: 837
Mail() in IIS5/SMTP
Question regarding PHP/iiS5/SMTP. I'm testing my script for my mail form: <?php $mail_to = "testing@yahoo.com"; $mail_subject = "Testing"; $mail_body = "Test body..."; $mail_from = "Testing@PHP.com"; if(mail($mail_to, $mail_subject, $mail_body, $mail_from)) ec...