Re: [PHP] Zend hit (Encoder price)

2001-01-25 Thread szii
not that complex and for $6,000 I can set up a number of unique users in the database. -Szii At 08:56 AM 1/25/2001 -0500, Jim Jagielski wrote: >Sander Pilon wrote: >> >> >> > >> > Hello, >> > >> > What do you think about Zend position? >

Re: [PHP] Zend hit (Encoder price)

2001-01-25 Thread szii
ll priced at $6,000. Sure, you may get a few sales before someone drops a replacement but you'd get a whole lot more by lowering the price, claiming market share and then you'd be better positioned when the (obviously in the works) Open community spits one out. Just some thoughts -Szii

Re: [PHP] connecting to AS400 DB2

2001-02-01 Thread szii
To connect to an AS400, you MUST HAVE THE DRDA package installed. Then you just run the Unified ODBC as usual (which still don't use ODBC but translate to DB2 CLI under the covers.) Look for the DRDA stuff in the DB2 Connect area/CD-ROM. There's stuff on phpbuilder.com about it too.

Re: [PHP] Pricing for PHP programming???

2001-02-02 Thread szii
customer is always right, and you should do everything you can to make them FEEL good. Even if thing's aren't going okay, as soon as they start doubting your skill, your decisions, they may doubt using you. If they like you they'll return, and often times will refer you to other comp

[PHP] Re: [PHP-DB] Connectivity to AS/400

2001-02-04 Thread szii
m-db2=. Make sure you run the CATALOG commands on the client so that it can find the AS400 database. 'Luck! -Szii At 10:41 AM 2/4/2001 -0800, Pete Lancashire wrote: >I'm going to be trying to connect to the native DB2 database in a AS/400 >So far thats all I know about the IBM side

Re: [PHP] Making a object from one class available to all objects in the calling class

2001-02-05 Thread szii
t;test(); } } AFAIK, there's no real way to "embed" a class definition within another class definition. Not quite sure why you'd want to, either, but it's your code. =) 'Luck! -Szii At 02:52 PM 2/5/2001 +, Stephen Maher wrote: >Hi, > >Can someone

[PHP] Cobalt RaQ

2001-02-05 Thread szii
ed and use the more expensive Sun chips with 2M SRAM? Thanks... -Szii -- 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] Cobalt RaQ

2001-02-05 Thread szii
1u is 1u. There's no difference in size between the RaQ and a standard 1u box, like the ones I described in my previous post. -Szii At 05:32 PM 2/5/2001 -, Julian Morcinek wrote: >I'ts also the small footprint (ideal for racking at large ISP's and Data >Centr

Re: [PHP] Creating Directorys (slightlyOT)

2001-02-07 Thread szii
es - many programs that run as root will employ this to help quarantine userscripts for security reasons though. 'Luck! -Szii At 12:11 AM 2/8/2001 -0700, Michael Dearman wrote: > > >[EMAIL PROTECTED] wrote: >> >> Hi, >> >> I am trying to install a free maili

[PHP] Should this work?

2001-02-08 Thread szii
s fine but then when I update the $refToArrayRow it's (obviously) not updating the original $some2DArray -Szii -- 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] Advanced Help Needed

2001-04-19 Thread Szii
Did you remember to base64 it? Perhaps some embedded chars in the binary file are messing with you. 'Luck -Szii - Original Message - From: Chris Anderson <[EMAIL PROTECTED]> To: Marc Davenport <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2

Re: [PHP] Which is better coding style...

2001-04-19 Thread Szii
. And I've got LOTS of diskspace =) function foo($varArray){foreach($varArray as $element){echo "this is 'tighter'\n";echo "but is it really worth it?\";} if (sizeof($varArray) == 1){echo "1 element";}else{echo sizeof($varArray);} echo "Know w

Re: [PHP] checking if e-mail address and syntax are valid

2001-04-24 Thread Szii
e existance/validity of the domain - not the user. 'Luck -Szii - Original Message - From: "christopher hamilton" <[EMAIL PROTECTED]> To: "Martin Skjoldebrand" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, April 24, 2001 1:39 PM Subject:

Re: [PHP] Array Cleansing

2001-03-23 Thread Szii
You assign to $newloop, then do a ++$newloop, and THEN dump $newloop. ie, you assign to 0, inc to 1, and dump 1...which isn't filled in yet. -Szii - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday,

Re: [PHP] What's XML's Purpose??

2001-04-16 Thread Szii
t need it, but once you have it, you'll find uses for it. Peace, love, code. -Szii - Original Message - From: Jason Caldwell <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 14, 2001 2:44 PM Subject: Re: [PHP] What's XML's Purpose?? >

Re: [PHP] fwrite not writing

2001-04-16 Thread Szii
so, put a check in after the fopen() call and make sure you're able to open up the file correctly. Perhaps and fflush() call before the rewind() call to ensure that the file buffer's actually written to disk before you try to re-read it? 'Luck -Szii - Original Message - Fr

Re: [PHP] how do I find out which checkbox is checked when form get submit

2001-04-18 Thread Szii
ll will give you the specifics. 'Luck -Szii - Original Message - From: Matt Williams <[EMAIL PROTECTED]> To: Jacky <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 18, 2001 2:26 AM Subject: RE: [PHP] how do I find out which checkbox is checked when form get sub