php-windows Digest 14 May 2002 05:50:00 -0000 Issue 1143

2002-05-13 Thread php-windows-digest-help
php-windows Digest 14 May 2002 05:50:00 - Issue 1143 Topics (messages 13720 through 13738): Sessions under PHP 4.2 13720 by: R.S. Herhuth 13721 by: Stuart Dallas 13722 by: brother Win2k + PHP + dynamic disk mirroring 13723 by: Stuart Dallas Re: mail() probl

Re: [PHP-WIN] how do I get a user name?

2002-05-13 Thread toby z
anyone know how to do that for iis ? or does the same thing works for it too ? plz do let me know thnx a billion toby. On 13 May 2002 at 17:21, Mauricio wrote: > I am using apaches' authentication. > How do i do for get user name and password in PHP? > PHP 4

[PHP-WIN] Problems with globals on php 4.0.6/IIS 4

2002-05-13 Thread Jan Erik Dyve
Hi, I have a problem with global variables on a NT 4 system with IIS 4 and php 4.0.6 (cgi). I try to set a global variable inside a function with the following code, $GLOBALS[$varname]=$varvalue but this doesn't work. The same code works on w2k with iis 5.0 and the same php.ini, so I don't thin

Re: [PHP-WIN] how do I get a user name?

2002-05-13 Thread Stuart Dallas
On 13 May 2002 at 17:21, Mauricio wrote: > I am using apaches' authentication. > How do i do for get user name and password in PHP? PHP 4.1.x or later: $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'] Earlier PHP: $PHP_AUTH_USER and $PHP_AUTH_PW -- Stuart -- PHP Windows Mailing List (ht

[PHP-WIN] how do I get a user name?

2002-05-13 Thread Mauricio
I am using apaches' authentication. How do i do for get user name and password in PHP? Thanks for all. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] php_gd.dll and Windows XP

2002-05-13 Thread toby z
alan im workin with php on xp ... iis 5 its workin fine y dont u re-install php from the scratch . edit its php.ini and the works dont foget to move your own files somevere else .first visit : http://www.umesd.k12.or.us/php/win32install.html you'll find

RE: [PHP-WIN] Re: how do I access variables passed in a URL?

2002-05-13 Thread toby z
. robin . i appreciate ur reply ++ ur generous offer n i'd b really gratefull if ud start dat :$ coz i ask the dumbest questionz of all :$ . toby ... __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Exp

Re: [PHP-WIN] Re: how do I access variables passed in a URL?

2002-05-13 Thread George Nicolae
I don't want to be malicious. But, when you have a question what is the first place where you search? In my opinion? The Manual! I'm not guilty for your busy inbox, newbies are and they must be taught.. -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professio

Re: [PHP-WIN] Re: how do I access variables passed in a URL?

2002-05-13 Thread R.S. Herhuth
In my defense, I did read the page but I was unaware that passing a variable as part of a URL string was considered a GET action. Had I known that I would have been able to figure it out. You learn something new everyday. Ron Robin Bolton wrote: > > George, > I'm sure that if Ron had want

RE: [PHP-WIN] php_gd.dll and Windows XP

2002-05-13 Thread Jeff Waldock
Alan I think the dll has been re-named to php_gd2.dll. Just rename the extension in your php.ini to this and re-start the web server and you should find it works. Jeff |-Original Message- |From: Alan Hale [mailto:[EMAIL PROTECTED]] |Sent: 13 May 2002 18:24 |To: [EMAIL PROTECTED] |Subjec

RE: [PHP-WIN] Re: how do I access variables passed in a URL?

2002-05-13 Thread Robin Bolton
George, I'm sure that if Ron had wanted such constructive input as that offered by yourself he wouldn't have bothered asking. Frankly, my inbox is already too busy being part of the PHP-WIN list, the last thing we need is a bunch of noise that doesn't actually contribute to the conversation. If y

[PHP-WIN] Re: how do I access variables passed in a URL?

2002-05-13 Thread George Nicolae
RTFM..;-) -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professional Web Design www.PaginiWeb.com "R.S. Herhuth" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I have the Globals turned off and I'm trying to figure o

Re: [PHP-WIN] how do I access variables passed in a URL?

2002-05-13 Thread Jason Soza
Use $HTTP_GET_VARS['testVar'] or $_GET['testVar'] - $_GET[] is preferred as $HTTP_GET_VARS[] is deprecated. http://www.php.net/manual/fi/language.variables.predefined.php Jason Soza - Original Message - From: "R.S. Herhuth" <[EMAIL PROTECTED]> Date: Monday, May 13, 2002 9:16 am Subject

[PHP-WIN] php_gd.dll and Windows XP

2002-05-13 Thread Alan Hale
I've recently upgraded to XP Pro from Windows Me. I previously had PHP running with the gd extension on Omnihttpd server, but found with the same configuration gd would not work (Error messages: First: " The procedure entry point add_assoc_long could not be located in the dll php4ts.dll" Then: "Un

[PHP-WIN] how do I access variables passed in a URL?

2002-05-13 Thread R.S. Herhuth
I have the Globals turned off and I'm trying to figure out which array will alow me to access varibales passed in the URL: Example: next page What array with the variable "testVar" show up in? Thanks, Ron -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

Re: [PHP-WIN] mail() problem

2002-05-13 Thread Peter
Check to see how many copies of php.ini are on your system. Although it shouldn't affect the module version, the php.ini in the c:\php (or whatever) folder is read by the CGI executable instead of the one in c:\windows <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED

[PHP-WIN] Win2k + PHP + dynamic disk mirroring

2002-05-13 Thread Stuart Dallas
Is anyone running PHP on Win2k with dynamic disk mirroring? If so, have you had any problems with it? I have a problem where include files are being corrupted somewhere between the disk and PHP and it's causing huge problems. The only difference between this server and the other servers we hav

RE: [PHP-WIN] Sessions under PHP 4.2

2002-05-13 Thread brother
> -Original Message- > From: R.S. Herhuth [mailto:[EMAIL PROTECTED]] > Page 2 - > > start_session(); > > echo $_session["testVar"]; > > ?> echo $_SESSION["testVar"]; Would be better I think (variables in php are casesensitive, I've learned it through $_GET last week=)) /bro

Re: [PHP-WIN] Sessions under PHP 4.2

2002-05-13 Thread Stuart Dallas
R.S. Herhuth <[EMAIL PROTECTED]> wrote: > I installed 4.2 and I want to use sessions with the "stock > configuration." I tried this but it doesn't work...what should I be > doing different? In what way? What error do you get? -- Stuart -- PHP Windows Mailing List (http://www.php.net/) To un

[PHP-WIN] Sessions under PHP 4.2

2002-05-13 Thread R.S. Herhuth
I know this has been discussed before but I'm having trouble finding anything that outlines it. I installed 4.2 and I want to use sessions with the "stock configuration." I tried this but it doesn't work...what should I be doing different? Page 1 - Page 2 - thanks, Ro

php-windows Digest 13 May 2002 12:07:43 -0000 Issue 1142

2002-05-13 Thread php-windows-digest-help
php-windows Digest 13 May 2002 12:07:43 - Issue 1142 Topics (messages 13718 through 13719): Re: mail() problem 13718 by: Danny Asmussen 13719 by: aleksandar.skodric.com Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the di

RE: [PHP-WIN] mail() problem

2002-05-13 Thread aleksandar
Try to put SMTP from your ISP, like: smtp.isp.com in the php.ini and try then... I run Win XP with PHP and it works OK! Good luck Alex >- Original Message - >From: "Tomator" <[EMAIL PROTECTED]> >Date: Friday, May 10, 2002 1:52 pm >Subject: [PHP-WIN] mail() problem > >> When I try to us