[PHP] Any netscape users out there?

2002-09-03 Thread Dan Ostrowski
I develop mostly in a Linux environment anymore, but I have a problem with Netscape and PHP. Well, not so much with PHP but developing it with Netscape. Post data makes Netscape REFUSE to show the underlying source code! It's virtually impossible to design form handling stuff when I can't

Re: [PHP] Any netscape users out there?

2002-09-03 Thread Dan Ostrowski
It happens ANYWHERE there is post info for me. Not just on my own PHP development pages. I was just wondering if there was a setting on Netscape to fix this kind of thing. regards, dan On Tue, 03 Sep 2002 10:07:11 -0600 Ashley M. Kirchner [EMAIL PROTECTED] wrote: Dan Ostrowski wrote

Re: [PHP] Any netscape users out there?

2002-09-03 Thread Dan Ostrowski
Which is strange because I use Netscape 6. Hmm... Perhaps I should upgrade to 7. Also, would the fact that I have Netscape 4.x installed on the same machine as my Netscape 6 cause anything funny to bleed over, you think? Perhaps its a shared library thing.. hmmm... Well thanks for the

Re: [PHP] Any netscape users out there?

2002-09-03 Thread Dan Ostrowski
hmmm... must be a bug. Same thing happens on Mozilla as Netscape. Anything with post data greys out the view source button, and I can't get it open. Weird. Time to hit some Linux IRC rooms. dan On Tue, 03 Sep 2002 12:56:02 -0400 Robert Cummings [EMAIL PROTECTED] wrote: Dan Ostrowski wrote

Re: [PHP] Re: Please help with fresh fish.

2002-09-03 Thread Dan Ostrowski
I truely recommend Beginning PHP4 by Wrox Press (www.wrox.com or p2p.wrox.com) if you have no experience in programming or PHP. It is, by far, the best $40 you will ever ever spend. I promise. regards, dan On Tue, 3 Sep 2002 16:46:03 -0700 (PDT) Philip Hallstrom [EMAIL PROTECTED] wrote:

Re: [PHP] Object composition and reference

2002-09-06 Thread Dan Ostrowski
, September 6, 2002, at 06:12 PM, Dan Ostrowski wrote: The only point I don't understand is why you are averted to saying $bus-setFuel($diesel); I don't understand the drawback... regards, dan On Fri, 6 Sep 2002 16:58:06 -0500 Paul Smith [EMAIL PROTECTED] wrote: I'm

Re: [PHP] Extracting Numbers from a string.

2002-09-11 Thread Dan Ostrowski
A simple: eregi_replace([^0-9], , $myvar); should do it. it says.. replace everything that is not a number ( character class [^0-9] which means Character class [ NOT ^ of Decimal 0-9 end character class ] ) with a NULL string, thereby ripping out all non-numeric components and leaving you

Re: [PHP] Installation

2002-09-18 Thread Dan Ostrowski
:04 +0200 Sascha Braun [EMAIL PROTECTED] wrote: Right now I've made a make clean to start it all over. Would you like to help me a little? Thanks Sascha - Original Message - From: Dan Ostrowski [EMAIL PROTECTED] To: Sascha Braun [EMAIL PROTECTED] Sent: Wednesday, September 18

Re: [PHP] DB speed

2002-10-10 Thread Dan Ostrowski
For SIMPLE SIMPLE selects and inserts, MySQL will probably remain faster. If you are doing a very simple web set up where you are mostly inserting and spitting out single table information, MySQL will be the way to go. Anything else, I would recommend PostgreSQL. It's got FAR superior

Re: [PHP] DB speed

2002-10-10 Thread Dan Ostrowski
Yes persistant connections to pg make a LOT of difference and are recommended.. I have never had overhead problems using them eaither. I am terribly sorry i didn't mention this before. Just make sure you have proper indexes and you should be good to go. regards, dan Uros Gruber wrote: Hi!