Re: [PHP-WIN] Re: Read Session in ASP in PHP

2001-11-19 Thread George Pitcher
> Sorry, I'm a PHP newbie. The only way I know you can pass values to a php > script is the normal way, through the URL, as in: a > href=yourscript.php?var1=value&var2=value... etc. Not strictly true. I am primarily a Lasso developer and I can pass values (and do) using Form, URL and Cookies.

[PHP-WIN] Re: Read Session in ASP in PHP

2001-11-19 Thread anch.org
Sorry, I'm a PHP newbie. The only way I know you can pass values to a php script is the normal way, through the URL, as in: a href=yourscript.php?var1=value&var2=value... etc. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP-WIN] new problem... problem with Query...

2001-11-19 Thread Todd Williamsen
Both don't work... same problem... I cannot figure it out "Olivier Hubert" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > If you mysql connection is the only one you're trying to maintain, > I suggest you try > > $result = @mysql_query($sql) or

RE: [PHP-WIN] Couldn't Open Stream Issues

2001-11-19 Thread R'twick Niceorgaw
It definitely looks like server doesn't like something. See in the server logs if it says any thing. I have never used argosoft server so no idea what's wrong with it. Try to use the pop3 protocol name in the request like $mbox = imap_open("{".$email_server.":110/pop3}".$folder,$name,$passwd);

Re: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Anthony Ritter
Daniel, Well...It sure didn't work for me with the comma and space...I got: Warning: Server Error in c:\program files\apache group\apache\htdocs\send_simpleform.php on line 10 When I got rid of the second e-mail address and just used one address everything is back to normal. Further, I checked

php-windows Digest 19 Nov 2001 23:49:03 -0000 Issue 863

2001-11-19 Thread php-windows-digest-help
php-windows Digest 19 Nov 2001 23:49:03 - Issue 863 Topics (messages 10498 through 10524): Re: Apache 2.0.28 module 10498 by: Sebastian Bergmann upload image 10499 by: Brian Feliciano Re: Back button using sessions 10500 by: Troy Moreland Re: Secure Web Applicati

RE: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Daniel Parsons
> > $recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma It is also worth pointing out that you need to include the space as well. $to = "[EMAIL PROTECTED],[EMAIL PROTECTED]" won't work, whereas $to = "[EMAIL PROTECTED], [EMAIL PROTECTED]" will work. Daniel. -- PHP Windows Mail

Re: [PHP-WIN] new problem... problem with Query...

2001-11-19 Thread Olivier Hubert
Hi, If you mysql connection is the only one you're trying to maintain, I suggest you try $result = @mysql_query($sql) or die ("Couldn't execute query."); e.g. without passing the $connection parameter. Also, try using mysql_error to get the actual error message. HTH! Olivier At 16

[PHP-WIN] Couldn't Open Stream Issues

2001-11-19 Thread josephfinnie
hi - anyone know why i am having problems with PHP scripts on my ArGoSoft Mail Server - it's coming up with these despite all configuration checks ..(it's an intranet server by the way) Warning: Couldn't open stream {localhost:110}INBOX in D:\...\includes Fatal error: Maximum execution time of

Re: [PHP-WIN] new problem... problem with Query...

2001-11-19 Thread Jim Lucas
try using single quotes Jim - Original Message - From: "Todd Williamsen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 19, 2001 2:30 PM Subject: [PHP-WIN] new problem... problem with Query... > Here it is I get the error "cannot execute query" so there is > so

[PHP-WIN] new problem... problem with Query...

2001-11-19 Thread Todd Williamsen
Here it is I get the error "cannot execute query" so there is something wrong with the SQL and I cannot figure it out... http://www.feminineforum.com/admin/pick_modcontact.php";); exit; } else { session_start(); } if ($valid != "yes") { header("Location: http://www.feminineforum.com/

RE: [PHP-WIN] Active Diretory????????????

2001-11-19 Thread Conover, Ryan
I never really worked with querying with LDAP any good resources on it. And Using PHP with it. Ryan Conover [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.pitt.edu/~rscst25/ -Original Message- From: Egil Helland [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 5:06 PM To: [EM

RE: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Ross Fleming
yes -Original Message- From: Craig Morrison [mailto:[EMAIL PROTECTED]] Sent: 19 November 2001 22:11 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Adding *another* person to an e-mail *to:* address Ross Fleming wrote: > > Actually yes. I was just looking there mys

Re: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Craig Morrison
Ross Fleming wrote: > > Actually yes. I was just looking there myself... > /* recipients */ > $recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma The concatenation operator "." is in use here. Is there a previous $recipient that this can be added to? > $recipient .= "Kelly <[EM

RE: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Ross Fleming
Actually yes. I was just looking there myself... /* recipients */ $recipient .= "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma $recipient .= "Kelly <[EMAIL PROTECTED]>" . ", "; $recipient .= "[EMAIL PROTECTED]"; Ross -Original Message- From: Craig Morrison [mailto:[EMAIL PROTECTED

Re: [PHP-WIN] Active Diretory????????????

2001-11-19 Thread Egil Helland
On Mon, 19 Nov 2001 09:53:14 -0500, Conover, Ryan wrote: >Has anyone been able to get information from Active Directory using >php? How did you do that? The easiest way to do this is through the use of LDAP. I actually wrote a script to snatch some info from it, but dont know if I still have it l

Re: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Craig Morrison
See: http://www.php.net/manual/en/function.mail.php Pay particular attention to example #4. Ross Fleming wrote: > > I think you can send it as an extra header... > > $mailheaders.="To: $otheremail\n"; > > I can't comment by saying used PHP to do this, but if you understand the > SMTP prot

RE: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Ross Fleming
I think you can send it as an extra header... $mailheaders.="To: $otheremail\n"; I can't comment by saying used PHP to do this, but if you understand the SMTP protocol then you'll know it should work. Ross -Original Message- From: Anthony Ritter [mailto:[EMAIL PROTECTED]] Sent: 19 Nov

Re: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Anthony Ritter
Ross, As much I would like to say it works...no dice. I tried: $to.=";[EMAIL PROTECTED]"; (semicolon) $to.=",[EMAIL PROTECTED]"; (comma) $to.="[EMAIL PROTECTED]".","; ended the first e-mail string with quotes then added a dot then put a comma in between quotes. Then ended it with a semicolo

[PHP-WIN] Read Session in ASP in PHP

2001-11-19 Thread Marco G
I'm a new PHP user, and can't find any help anywhere about being able to reference an existing session from a website (IIS/ASP) to a IIS/PHP. Basically, I have PHP and MySQL running on a Win2000 pc, but also have ASP running as the primary language for a website. We're integrating PHP and need t

RE: [PHP-WIN] Julie Meloni's Modified Contact management script

2001-11-19 Thread Ross Fleming
You're missing an open parenthesis in the insert part... $sql = "INSERT INTO tblmembers ( ID, etc Ross -Original Message- From: Todd Williamsen [mailto:[EMAIL PROTECTED]] Sent: 19 November 2001 20:00 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Julie Meloni's Modified Contact management

RE: [PHP-WIN] Julie Meloni's Modified Contact management script

2001-11-19 Thread Ross Fleming
-Original Message- From: Todd Williamsen [mailto:[EMAIL PROTECTED]] Sent: 19 November 2001 20:00 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Julie Meloni's Modified Contact management script I cannot figure out why the mysql_query is not working. Everything id done according to Julie's b

[PHP-WIN] Julie Meloni's Modified Contact management script

2001-11-19 Thread Todd Williamsen
I cannot figure out why the mysql_query is not working. Everything id done according to Julie's book and I end up with the "Couldn't execute query" error Here is the script: http://localhost/show_addcontact.php";); exit; } else { session_start(); } if ($valid != "yes") { header("Location

RE: [PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Ross Fleming
stick a comma or a semicolon in between (can't remember which) $to.="; [EMAIL PROTECTED]"; -Original Message- From: Anthony Ritter [mailto:[EMAIL PROTECTED]] Sent: 19 November 2001 18:59 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Adding *another* person to an e-mail *to:* address Hi, Tha

[PHP-WIN] Adding *another* person to an e-mail *to:* address

2001-11-19 Thread Anthony Ritter
Hi, Thanks to all that helped me out yesterday. I'm using PHP with Apache on a MS Windows 98 box. I would like to include a cc to another e-mail adresss when sending an e-mail. In addition I would like to *receive* and *also have the cc person receive* this e-mail as well. Right now, I am rece

[PHP-WIN] Re: Active Diretory????????????

2001-11-19 Thread Troy Moreland
You could use LDAP. Just depends on what attributes you are dealing with since AD isn't a true LDAP directory. Anything from the inetOrgPerson class can not be pulled or updated with AD... "Ryan Conover" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Has an

RE: [PHP-WIN] Authentication Scripts

2001-11-19 Thread Ross Fleming
echo ("$password"); to see exactly what is being returned. There might be a being appended to it for some reason... Ross -Original Message- From: Todd Williamsen [mailto:[EMAIL PROTECTED]] Sent: 19 November 2001 03:16 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Authentication Scripts

[PHP-WIN] Re: [PHP] Re: Apache 2.0.28 module

2001-11-19 Thread The Doctor
On Mon, Nov 19, 2001 at 11:34:41AM +0100, Sebastian Bergmann wrote: > Jobarr wrote: > > I need a build of PHP that can be used as a module with Apache 2.0.28 > > beta. > > Please do not massively cross-post to the various php.net mailinglists > or newsgroups. > > -- > Sebastian Bergmann

[PHP-WIN] Active Diretory????????????

2001-11-19 Thread Conover, Ryan
Has anyone been able to get information from Active Directory using php? How did you do that? Ryan Conover [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.pitt.edu/~rscst25/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: [PHP-WIN] Secure Web Application

2001-11-19 Thread Troy Moreland
I meant LDAP SSL, not HTTP SSL! :) "Egil Helland" <[EMAIL PROTECTED]> wrote in message 2008233756.BGQE4910.mta01@workhorse">news:2008233756.BGQE4910.mta01@workhorse... On Sun, 18 Nov 2001 11:58:20 -0600, Troy Moreland wrote: >Can anyone give me details on how to make my PHP-LDAP applicatio

Re: [PHP-WIN] Back button using sessions

2001-11-19 Thread Troy Moreland
I tried your option 2 and it worked great! Not sure if that degrades performance or not but getting rid of those annoying messages is much worse that a slight degradation to me! Thanks! "Egil Helland" <[EMAIL PROTECTED]> wrote in message 2008233831.BGQY4910.mta01@workhorse">news:20082338

[PHP-WIN] upload image

2001-11-19 Thread Brian Feliciano
how can i upload an image?? i tested using copy( ) but it returned a Permission Denied error... please help...thanks. do i really have to do an ftp? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[PHP-WIN] Re: Apache 2.0.28 module

2001-11-19 Thread Sebastian Bergmann
Jobarr wrote: > I need a build of PHP that can be used as a module with Apache 2.0.28 > beta. Please do not massively cross-post to the various php.net mailinglists or newsgroups. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I hel

php-windows Digest 19 Nov 2001 11:00:14 -0000 Issue 862

2001-11-19 Thread php-windows-digest-help
php-windows Digest 19 Nov 2001 11:00:14 - Issue 862 Topics (messages 10479 through 10497): PHP Mail() function. Help please... 10479 by: Anthony Ritter 10480 by: Julie Meloni 10486 by: Anthony Ritter Authentication Scripts 10481 by: Todd Williamsen 1

Re: [PHP-WIN] Calling stored procedure in PHP

2001-11-19 Thread Paco Ortiz
Hi, >What's the problem? It's just another statment... not if you use OUTPUT and RETURN values... There are three new API's in php_mssql. F. Kromman included them for php4.1, but I have a copy of php_mssql 4.0.6 with the new stored procedures API's, they are well tested, don't worry. If you as

RE: [PHP-WIN] Calling stored procedure in PHP

2001-11-19 Thread Svensson, B.A.T. (HKG)
What's the problem? It's just another statment... >-Original Message- >From: wim van houts [mailto:[EMAIL PROTECTED]] >Sent: Monday, November 19, 2001 9:52 AM >To: [EMAIL PROTECTED] >Subject: [PHP-WIN] Calling stored procedure in PHP > > >Hi all, > >I am transfering a IIS/ASP solution to

[PHP-WIN] Calling stored procedure in PHP

2001-11-19 Thread wim van houts
Hi all, I am transfering a IIS/ASP solution to Apache/PHP solution, though we will still use MS SQL Server for our databases. Therefore it is necesary that I can call stored procedures that are already in the database. Is there someone out there who knows how to? I've looked around some time but

[PHP-WIN] Configuring PHP to use several php.ini under IIS?

2001-11-19 Thread Igor Petrov
Command-line parameters are ignored when using PHP as a CGI-module. What is the problem? -- 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] Apache 2.0.28 module

2001-11-19 Thread Jobarr
I need a build of PHP that can be used as a module with Apache 2.0.28 beta. Anyone know where I could find one? It is not compatible with previous 2.0 builds. thanks -Jobarr -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,