RE: [PHP] Cannot modify header information - headers already sent

2003-06-20 Thread Henning Sittler
outputing some text. Henning Sittler www.inscriber.com -Original Message- From: Logan McKinley [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 10:04 AM To: [EMAIL PROTECTED] Subject: [PHP] Cannot modify header information - headers already sent I am having a problem whe

RE: [PHP] Cookies- peanut butter or chocolate??

2003-06-19 Thread Henning Sittler
it in your script, so that you determine the two seperatevalues actually stored there. Henning Sittler www.inscriber.com -Original Message- From: Sparky Kopetzky [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 4:10 PM To: PHP General Subject: [PHP] Cookies- peanut butter or choc

RE: [PHP] Processing Form Data /w $_POST

2003-06-19 Thread Henning Sittler
it's in the manual, read here: <http://ca.php.net/manual/en/control-structures.foreach.php> Henning Sittler www.inscriber.com -Original Message- From: Kyle Babich [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 12:43 PM To: [EMAIL PROTECTED] Subject: [PHP] Processin

RE: [PHP] php https file download

2003-06-19 Thread Henning Sittler
Beautiful, that worked immediately! Thanks for your very quick and super helpful reply, John. The solution is to change the session.cache_limiter to none in php.ini. Henning Sittler www.inscriber.com -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent

[PHP] php https file download

2003-06-19 Thread Henning Sittler
ing: binary Connection: close Content-Type: application/octect-stream curl output What's going on here? Thanks in advance for any help you can offer!! Henning Sittler www.inscriber.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Check for Associative Array

2002-07-18 Thread Henning Sittler
Ya, except I want the whole array to exist (index and assoc. array), not just the assoc. array. So, for the time being, I'll just do this: foreach ($arr as $key=>$value) { if ( !is_int($key) ) { echo "$key:$value"; } } What is HTH ?? Henning Sittler www.inscriber.com

[PHP] Check for Associative Array

2002-07-18 Thread Henning Sittler
val B) check if the $key is just a number or just a string C) $key += 1 ?? Thanks, Henning Sittler www.inscriber.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Alley-OOP! ... or not?

2002-07-15 Thread Henning Sittler
Why not try it for yourself? If it seems helpful then use it, if not then don't. Henning Sittler www.inscriber.com -Original Message- From: Martin Clifford [mailto:[EMAIL PROTECTED]] Sent: Monday, July 15, 2002 11:05 AM To: [EMAIL PROTECTED] Subject: [PHP] Alley-OOP! ... o

RE: [PHP] Getting the URL that triggered a 404.

2002-07-11 Thread Henning Sittler
The $_SERVER environment variables should be there, I'm using them. Henning Sittler www.inscriber.com -Original Message- From: Brian McGarvie [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 12:00 PM To: Robert Cummings; [EMAIL PROTECTED] Subject: RE: [PHP] Getting th

RE: [PHP] sigh... forms

2002-07-09 Thread Henning Sittler
want is an abstract set of php functions to say, ok, I want another form with say 10 questions, and I want to define each question and set of possible answers (input types and ranges) manually, and have the action script automatically check that the input types and ranges for each question are valid.

RE: [PHP] RegEx question

2002-07-02 Thread Henning Sittler
$string = 'somethingphp'; $pat = 'php$'; $hasphp = ereg($pat, $string); Henning Sittler www.inscriber.com -Original Message- From: David Busby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 4:49 PM To: php-general Subject: [PHP] RegEx question Lis

RE: [PHP] variable statements

2002-06-26 Thread Henning Sittler
Perfect. Thank you Jason. Henning Sittler www.inscriber.com -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 1:44 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] variable statements On Thursday 27 June 2002 01:34, Henning Sittler wrote

[PHP] variable statements

2002-06-26 Thread Henning Sittler
cho $function; } $lucid = "if (1) { echo $function; }"; $lucid; // doesn't work, but doesn't show an error Thanks for any help, Henning Sittler www.inscriber.com