[PHP] variable statements

2002-06-26 Thread Henning Sittler
$function; }; $lucid; // doesn't work, but doesn't show an error Thanks for any help, Henning Sittler www.inscriber.com

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

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 List, How can I

RE: [PHP] sigh... forms

2002-07-09 Thread Henning Sittler
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. Henning

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 the URL

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

[PHP] Check for Associative Array

2002-07-18 Thread Henning Sittler
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] 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 Try this: while($row

[PHP] php https file download

2003-06-19 Thread Henning Sittler
? 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] 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

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] Processing Form Data

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 chocolate

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

2003-06-20 Thread Henning Sittler
) echo $some_text; else header(Location: .$out); function my_function() { // some code goes here if ($something) return $some_text; return; } // end my_function() ? Try looking at line 29. that's the line where you are trying to output a header after outputing some text. Henning Sittler