RE: [PHP] Session problem

2001-08-08 Thread Brian Dunworth


On Wednesday, August 08, 2001 at 9:16 AM, Chad Day said:
 I wish it did.

 Still the same problem.

 ?php
 session_start();
 global $count;
 session_register (count);
 $count++;
 ?

 Hello visitor, you have seen this page ?php echo
 $HTTP_SESSION_VARS[count]; ? times.p


  You're asking the session to remember a value ( session_register() ), then
changing that value ( $count++ ) and not re-registering it, then complaining
when the session returns the value you asked it to remember.

  What if you did:

?php
session_start();
$count++;
session_register (count);
?


 - Brian

 ---
  Brian S. Dunworth
  Sr. Software Development Engineer
  Oracle Database Administrator
  The Printing House, Ltd.
  (850) 875-1500 x225
 ---



-- 
PHP General 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]




RE: [PHP] Linux PHP Install Problems (was: Oh and one more thing)

2001-08-06 Thread Brian Dunworth


 On Saturday, August 04, 2001 at 1:47 AM, Joel Ricker wrote:

   1) format your harddrive
   2) take out your motherboard and spraypaint it
   bright orange.

 Ok I did that.

   3) dance around the desk three times holding the
   motherboard above your head chanting
   mail mail, give me mail
   date date, give me date
   ga booga woooga shooga

 I felt a little silly but I did that too.

   4) install linux
   5) install apache
   6) install PHP

 I tried doing that but computer isn't working right.  It
 smokes now when I turn it on and there is a strange smell
 coming from my computer vents.  Did I use the right color
 orange?  Please help.

  Oh, dear.  This is not the first time something like this has happened.

  From your description, it sounds like you must have used Burnt Orange
colored paint instead of the (highly recommended) Safety Orange colored
paint.  So now, not only is your motherboard burnt but can no longer be
considered safe.

  If you attempt to do this again, also remember to be very careful with the
pronunciation of the final line of the mantra in step 3...




 ---
  Brian S. Dunworth
  Sr. Software Development Engineer
  Oracle Database Administrator
  The Printing House, Ltd.
  (850) 875-1500 x225
 ---


-- 
PHP General 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]




RE: [PHP] Re: FAQ

2001-08-01 Thread Brian Dunworth



On Wednesday, August 01, 2001 at 11:53 AM, Clayton Dukes said:

 I have a question:
 Does anyone know what PHP stands for?
 It's not in any of the FAQ's I've looked at.

  PHP is short for PHP: Hypertext Preprocessor

  ...neat, huh?  a recursive definition!

 - Brian

 --- 
  Brian S. Dunworth
  Sr. Software Development Engineer
  Oracle Database Administrator
  The Printing House, Ltd.
  (850) 875-1500 x225
 --- 


-- 
PHP General 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]




RE: [PHP] Zip Code Locator?

2001-07-25 Thread Brian Dunworth



 Hey, let me know if you figure out what the extra numbers are
 for... I might have a use for this at some point.

  The last two numbers are latitude and longitude of the registered zip code
center for the given zip code.


 ---
  Brian S. Dunworth
  Sr. Software Development Engineer
  Oracle Database Administrator
  The Printing House, Ltd.
  (850) 875-1500 x225
 ---



-- 
PHP General 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]




RE: [PHP] Capitalize Function ??

2001-07-24 Thread Brian Dunworth

On Tuesday, July 24, 2001 2:32 AM, Alexander Skwar said:

 But this is not a good idea!  There are Names (like Hans vom Bach or
 somesuch) which do NOT have to be captialized.  Actually, capitalizing
 the vom would be wrong.  Although this was just a German
 example, I'd bet there are names in French, Dutch, Spanish, Italian as
 well which should not be capitalized.

 ..or, at least not capitalized in the simple fashion of ucwords().

  Leonardo da Vinci
  Otto von Bismarck

 Hmm, how about English?

 ..or Scottish, or Irish?

  Elle MacPherson
  Angus MacGyver
  Ronald McDonald

 Sometimes there are suffixes like the 3rd, no?  Would it be right
 to capitalize this?

  Well, usually that'd be III.  Of course, John Smith, Iii would be
wrong...

 - Brian


 ---
  Brian S. Dunworth
  Sr. Software Development Engineer
  Oracle Database Administrator
  The Printing House, Ltd.
  (850) 875-1500 x225
 ---


-- 
PHP General 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]