RE: [PHP-WIN] What variables does a tag submit?

2001-12-14 Thread Christian Sandfeld
I second that... -Original Message- From: Michael Reynolds [mailto:[EMAIL PROTECTED]] Sent: 14. december 2001 10:33 To: Cliff; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] What variables does a tag submit? --- Cliff <[EMAIL PROTECTED]> wrote: > Hi, > > I would like to ask, what variables

RE: [PHP-WIN] A referer code needed

2001-12-10 Thread Christian Sandfeld
Either one of these preset vars should do: $HTTP_REFERER $HTTP_SERVER_VARS["HTTP_REFERER"] $HTTP_ENV_VARS["HTTP_REFERER"] /Christian -Original Message- From: Emad El-Din [mailto:[EMAIL PROTECTED]] Sent: 5. oktober 2001 05:57 To: [EMAIL PROTECTED] Subject: [PHP-WIN] A referer code needed

RE: [PHP-WIN] IIS help

2001-12-04 Thread Christian Sandfeld
Don't know if you can find your answer there, but have a look at www.15seconds.com /Christian -Original Message- From: Conover, Ryan [mailto:[EMAIL PROTECTED]] Sent: 3. december 2001 23:02 To: '[EMAIL PROTECTED]' Subject: [PHP-WIN] IIS help I know this is a php forum, but I am not sure

RE: [PHP-WIN] installation php4.0.6 on IIS 5.0 with Win 2000 Server

2001-12-03 Thread Christian Sandfeld
I don't know of an actual manual, but I find that the instructions included with the Windows binary are quite easy to follow. First, you need to ensure that you have a WEB server running (with Win2000 that would typically be IIS 5.0). Try opening your browser and enter http://localhost/ as the UR

RE: [PHP-WIN] Header() redirect

2001-12-03 Thread Christian Sandfeld
I too use sessions with header() redirects, with out the warnings. I too would think that the problem is some spaces or line breaks before your mailto:[EMAIL PROTECTED]] Sent: 30. november 2001 11:51 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Header() redirect Is there another function that does

RE: [PHP-WIN] PHP Bulletin Board - How it works...

2001-12-03 Thread Christian Sandfeld
Assuming all you want is a good BBS to run at your site, there are very qualified Open Source bulletin boards readily available on the WEB at no charge. One such BBS is phpBB wich is located at www.phpbb.com. If on the other hand you want to learn how to make your own BBS I second what Mr. Svenss

RE: [PHP-WIN] checkdnsrr()

2001-12-03 Thread Christian Sandfeld
Unfortunately you can't. According to the manual on php.net that function is not available on the windows platform (http://www.php.net/manual/en/function.checkdnsrr.php) Rgds, Christian -Original Message- From: Jos van der Vleuten [mailto:[EMAIL PROTECTED]] Sent: 3. december 2001 15:30

RE: [PHP-WIN] File upload

2001-12-03 Thread Christian Sandfeld
Without knowing for sure I would imagine that the PHP installation on the server is running in safe mode (look for the "safe_mode" var in your php.ini). Brgds, Christian -Original Message- From: Samba Sidibeh [mailto:[EMAIL PROTECTED]] Sent: 3. december 2001 10:50 To: [EMAIL PROTECTED]

[PHP-WIN] Opening IP sockets to multiple destinations at the same time

2001-11-29 Thread Christian Sandfeld
Hi *, I'm not sure if this is the right list to post this question in - but since I can't find a subject specific list for this I'll give it a try. Some time ago I was working on a script that would query a bunch of servers for their status using through IP socket programming. It worked ok excep

RE: [PHP-WIN] Getting The Name Of A Form Within A Script

2001-10-10 Thread Christian Sandfeld
Not to my knowledge. However what you could do is ad a hidden field to your form, parsing the name of your form to the script. I.e.: . . . . etc. Then you would always have the name of your form in $form. I know it's probably not what you're looking for, but it should work. /Christian -

RE: [PHP-WIN] Stripping filepath from string

2001-10-09 Thread Christian Sandfeld
Thanks to all who provided input. The basename function does the trick (as pointed out by Serge). Once again thank you ;-) /Christian -Original Message- From: Serge Nicolas [mailto:[EMAIL PROTECTED]] Sent: 9. oktober 2001 18:37 To: Christian Sandfeld Subject: Re: [PHP-WIN] Stripping

RE: [PHP-WIN] Stripping filepath from string

2001-10-09 Thread Christian Sandfeld
Oh, I should probably have mentioned that what I want to end up with is the stuff to the right of the last slash (be that forward of backslash). /Christian -Original Message- From: Christian Sandfeld [mailto:[EMAIL PROTECTED]] Sent: 9. oktober 2001 15:41 To: '[EMAIL PROTECTED]

[PHP-WIN] Stripping filepath from string

2001-10-09 Thread Christian Sandfeld
Hi list, I know I have seen this somewhere - but I can't find it (and for some reason I can't get my head around it). Is there a predefined function or alternatively an easy way to strip the filepath of a string containing both filepath and filename? Strings could look like this: /my/fi

RE: RE: [PHP-WIN] How can I retreive a users Windows logon name?

2001-09-21 Thread Christian Sandfeld
Thanks for the info Frank, I appreciate it :) /Christian -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED]] Sent: 18. september 2001 19:19 To: Christian Sandfeld Cc: '[EMAIL PROTECTED]'; 'Eric R. Gavin' Subject: Re: RE: [PHP-WIN] How can I retr

RE: [PHP-WIN] How can I retreive a users Windows logon name?

2001-09-18 Thread Christian Sandfeld
Eric, Thanks for sharing. I too can not get the user name for pages where anonymous access is allowed, but since it's on our intranet, that's ok (all users are loged on to our NT domain). Regards, Christian -Original Message- From: Eric R. Gavin [mailto:[EMAIL PROTECTED]] Sent: 17. sep

RE: [PHP-WIN] How can I retreive a users Windows logon name?

2001-09-17 Thread Christian Sandfeld
2001 18:41 To: Christian Sandfeld Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP-WIN] How can I retreive a users Windows logon name? Hi Christian, If you change the access control from Basic to NT LM for the Intranet web site you will gain the following things: 1) Users loged on to the sa

RE: [PHP-WIN] How can I retrieve a users Windows logon name?

2001-09-17 Thread Christian Sandfeld
2001 16:19 To: 'Christian Sandfeld' Subject: RE: [PHP-WIN] How can I retrieve a users Windows logon name? Have you looked at .htaccess and using $REMOTE_USER in your PHP code to get the userid. Under Apache it works great, I'm not sure about IIS. -Original Message-

RE: [PHP-WIN] How can I retreive a users Windows logon name?

2001-09-17 Thread Christian Sandfeld
Regards, Christian -Original Message- From: Ertan Tike [mailto:[EMAIL PROTECTED]] Sent: 17. september 2001 12:43 To: 'Christian Sandfeld' Cc: '[EMAIL PROTECTED]' Subject: RE: [PHP-WIN] How can I retreive a users Windows logon name? Importance: Low hi, i have a at

[PHP-WIN] How can I retreive a users Windows logon name?

2001-09-17 Thread Christian Sandfeld
that this does not provide for much security, but that's ok (I'm not after security, only after a simple user verification). I thank you in advance for your time ;-) /Christian ------ Christian Sandfeld Zensys A/S

RE: FW: [PHP-WIN] Spell checking w. PHP in Windows

2001-07-09 Thread Christian Sandfeld
uestions and MySQL > questions that do not pertain directly to PHP. People learn to > put a few HTML tags in a txt doc and call themselves "web programmers". > If you do not know anything about RDBMS then why are you messing with > it? > > Keep it real. > (Keep it PHP) &

[PHP-WIN] Spell checking w. PHP in Windows

2001-06-28 Thread Christian Sandfeld
I have been looking for a while for a way to supply spell checking to the users of my submit forms, and stumbled accross the tutorial at Zend Technologies (http://www.zend.com/zend/spotlight/spellchecking.php?print=1) dealing with this, utilizing the Aspell/Pspell modules. Now, this is all dandy,

RE: [PHP-WIN] gd/apache1.3/WinNT

2001-06-27 Thread Christian Sandfeld
I'm new to the list, so I didn't get the full story. But I fealt like throwing in my 2 cents anyway. I'm running IIS4 on NT4.0 SP6, and was experiencing great difficulties getting PHP 4.0.5 to work when loading the PDF and GD .DLL's. I never bothered to find out which of the modules where causing

RE: [PHP-WIN] Session varibles

2001-06-27 Thread Christian Sandfeld
Jason, In order to work with session vars, do like this: This all has to be done before sending output to the browser, just as is the case with cookies. Hope this helped :) /Christian -Original Message- From: Jason Belletty [mailto:[EMAIL PROTECTED]] Sent: 26. juni 2001 17:13 To: [E