Re: [PHP-WIN] Adding a cc to a PHP mail script...

2001-11-18 Thread Anthony Ritter
Daniel, I tried your suggestion (see below) but the letter gets bounced back like this: [EMAIL PROTECTED],linda . Here is the script: Simple Feedback Form The following email has been sent: Your Name: Your email address: Message:

Re: [PHP-WIN] Authentication Scripts

2001-11-18 Thread Todd Williamsen
Ross, Thanks... That was ONE of the problems... the other was the "if" statement in the beginning of the script "Ross Fleming" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Although PHP classes $Password and $password as 2 seperate variables, I'm > pretty s

RE: [PHP-WIN] Adding a cc to a PHP mail script...

2001-11-18 Thread Daniel Parsons
If you want to add additional email addresses to the 'To' list, use a comma seperated list: e.g. $to = "[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]"; if you want to cc the email then add it to your headers: e.g. $mailheaders .= "Cc: [EMAIL PROTECTED]\r\n"; HTH, D. > -Original Me

[PHP-WIN] How to create and run background process at Win2K

2001-11-18 Thread Chris Lee
Hi, It is possible to create/run background process at Win2K / Apache environment? If yes, how? Regards, Chris Lee -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP-WIN] Adding a cc to a PHP mail script...

2001-11-18 Thread Anthony Ritter
Is there any way to add an *additional* e-mail address - a cc - besides the one that is already in the $to variable below using the following PHP script? Thanking all in advance. Tony Ritter .. \n"; $mailheaders.="Reply to: $sender_email\n\n"; mail($to,$

RE: [PHP-WIN] Authentication Scripts

2001-11-18 Thread Ross Fleming
Although PHP classes $Password and $password as 2 seperate variables, I'm pretty sure when you 'post' the data, it passes them ALL as lowercase. Call them password1 and password2 and keep all the variables lower case and see if it works Let me know Ross -Original Message- From: Todd Wi

Re: [PHP-WIN] PHP Mail() function. Help please...

2001-11-18 Thread Anthony Ritter
Thank you Julie. It works fine now. Regards, Tony Ritter -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-WIN] Re: [PHP] relative paths

2001-11-18 Thread Joe Stump
An easy way to fix this common problem is this: define('BASE_INCLUDE_PATH','/var/www/includes/'); include(BASE_INCLUDE_PATH.'my_include.inc'); Just make sure to include the file with the BASE_INCLUDE_PATH define using a relative path ... ie. --Joe On Sat, Nov 17, 2001 at 05:15:02PM +0100,

Re: [PHP-WIN] Back button using sessions

2001-11-18 Thread Egil Helland
On Sun, 18 Nov 2001 12:01:11 -0600, Troy Moreland wrote: >Can someone tell me how to get around the following problem: > >I am using sessions to store a person's ID and password that they >authenticate with at the start page. The entire web site is secured >this way. The problem is that hitting

Re: [PHP-WIN] Secure Web Application

2001-11-18 Thread Egil Helland
On Sun, 18 Nov 2001 11:58:20 -0600, Troy Moreland wrote: >Can anyone give me details on how to make my PHP-LDAP application >secure? I have two unsecure issues: > >1) I can't figure out how to get SSL to work. What do you mean, getting SSL to work? Its just working if you have a valid SSL certi

[PHP-WIN] Re: PHPDownload - platform differences?

2001-11-18 Thread Todd Williamsen
Just run Apache on Win2k... I do "Emil Chow" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have seen a program called PHPDownload that uses MySQL to store a download > database. Since the script is no longer supported, I just have some general > questions,

[PHP-WIN] Authentication Scripts

2001-11-18 Thread Todd Williamsen
I have been trying to use a script that adds users to the database and this is what I came up with, which DOES not work for some unknown reason: I have been having problems with your script, maybe its me, the hosting provider.. But I need to find out what is what. I have a DB called feminineforu

Re: [PHP-WIN] PHP Mail() function. Help please...

2001-11-18 Thread Julie Meloni
Sunday, November 18, 2001, 4:03:37 PM, you wrote: AR> Warning: Failed to connect in C:\Program Files\Apache AR> Group\Apache\htdocs\send_simpleform.php AR> in line 10. AR> I have made the corrections in my php.ini file in the [mail function] AR> to read as follows: AR> SMTP=localhost AR> [EMAI

[PHP-WIN] PHP Mail() function. Help please...

2001-11-18 Thread Anthony Ritter
I'm reading J.Meloni's tutorial on page 119 in "Fast and Easy" and she is explaining using the PHP mail function. I'm using MS Windows 98. There are two scripts for this example... One is the .html file which lays out the form with input boxes, a textarea box and a submit button. It is: Si

php-windows Digest 18 Nov 2001 21:41:50 -0000 Issue 861

2001-11-18 Thread php-windows-digest-help
php-windows Digest 18 Nov 2001 21:41:50 - Issue 861 Topics (messages 10471 through 10478): Re: extensions and ini.Help. 10471 by: Gu Weidong-a1923c flash variables 10472 by: sundeep Re: Use sockets under windows 10473 by: Delbono Nicola fopen ; fstat PHP ver.4.0.6

[PHP-WIN] Database Login

2001-11-18 Thread Todd Williamsen
I am looking to do a login page where they would log into the database, but not show the database information... Its a mySQL database i.e. login page with usernam and password then it would bring them into a html page with a menu of items. I want the database to control the passwords. I have be

[PHP-WIN] Back button using sessions

2001-11-18 Thread Troy Moreland
Can someone tell me how to get around the following problem: I am using sessions to store a person's ID and password that they authenticate with at the start page. The entire web site is secured this way. The problem is that hitting the back key often gives the "This page has expired, hit Refre

[PHP-WIN] Secure Web Application

2001-11-18 Thread Troy Moreland
Can anyone give me details on how to make my PHP-LDAP application secure? I have two unsecure issues: 1) I can't figure out how to get SSL to work. 2) I'm using sessions to store ID and password but the passwords are in clear text on the server. I'm running PHP on the W2K platform and no one

[PHP-WIN] .PSD File Info?

2001-11-18 Thread Josh Seward
I have discovered the function IPTCPARSE and how it is used to extract file header info. I need this to extract Adobe Photoshop images info. This works for jpg images fine, but when the same script is applied to .psd images it fails to report the info. #1 Why is this? #2 Can I do anything to

[PHP-WIN] fopen ; fstat PHP ver.4.0.6

2001-11-18 Thread Mister16
Hi everybody!! Does anybody know how to use fopen and fstat! I used it on local files and refered files on the own server, but it doesn't show (e.g. the filesize) of my server with the downloadfiles, which is not the same server the php files are on! I've also added the source code, so please hel

Re: [PHP-WIN] Use sockets under windows

2001-11-18 Thread Delbono Nicola
Hello. I thought Sockets Under win didn't work.. maybe you can try with this other script: http://marc.theaimsgroup.com/?l=php-general&m=98225134721753&w=2 - Original Message - From: "Walter Gyr" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 8:59 AM Subje

[PHP-WIN] flash variables

2001-11-18 Thread sundeep
hi list i have made a crossword in flash where a user will fill some alphabats. these alphabats r then to send in an email. how can i make php to read my flash variables and then send them to an email address. any readymade solutions or some links regards sundeep

RE: [PHP-WIN] extensions and ini.Help.

2001-11-18 Thread Gu Weidong-a1923c
Copy gds32.dll to "winnt\system32" and try again. -Original Message- From: Jovanovic [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 7:47 AM To: php-windows-mailingList Subject: [PHP-WIN] extensions and ini.Help. Hi... Anyone got a clue for this piece of "bad luck"? I'm on wi