[PHP] server to server post

2002-08-02 Thread Purushotham Komaravolu
Hi all, I am new to php, can anybody pls help me out with my query? How to do a server to server post in php, without client knowing about it. Thanks Puru

[PHP] server to server post

2002-08-02 Thread Purushotham Komaravolu
Hi all, I am new to php, can anybody pls help me out with my query? How to do a server to server post in php, without client knowing about it. Thanks Puru

[PHP] mcrypt

2002-07-30 Thread Purushotham Komaravolu
Hello, I am getting some odd errors trying to get an encrypt/decrypt process to work. Looking at the manual examples and some other literature, I have tried the two approaches listed below. For each, I get a sometimes-works, sometimes fails result. The

Re: [PHP] mcrypt

2002-07-30 Thread Purushotham Komaravolu
Warning: mcrypt_generic_end(): 2 is not a valid MCrypt resource in /mount/marsellus/gwolfe/puruclient/staging/vhosts/partnersdev.sec.yaga.com/h tml/time/cancelsubscription/new.php on line 31 decrypted: /// Regards, Purushotham Komaravolu Software Engineer

Re: [PHP] PHP with online cedit card processing

2002-06-28 Thread Purushotham Komaravolu
have look at www.yaga.com - Original Message - From: Analysis Solutions [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Friday, June 28, 2002 10:12 PM Subject: Re: [PHP] PHP with online cedit card processing Howdy Boys and Girls: On Fri, Jun 28, 2002 at 03:26:01PM -0400,

[PHP] singleton feature

2002-06-24 Thread Purushotham Komaravolu
Hi , I have a small suggestion. I guess it is a good feature to have a provision to have a Singleton class per webserver instance. This is especially useful for maintain user defined connection pools, loggers etc. Thanks Regards, Puru

[PHP] Re: [PHP-DEV] singleton feature

2002-06-24 Thread Purushotham Komaravolu
Singleton means only one instance.. i.e. instance of a class per webserver... all application scripts should talk only to that same instance irrespective of the request. p - Original Message - From: Alexander Skwar [EMAIL PROTECTED] To: Purushotham Komaravolu [EMAIL PROTECTED] Cc: [EMAIL

[PHP] Application level logging module

2002-06-21 Thread Purushotham Komaravolu
Hi all, Did anyone work on application level logging module ? Please let me know the correct architecture, since I am not able to create a singleton per webserver. Thanks Regards, Puru

Re: [PHP] include() question...

2002-06-20 Thread Purushotham Komaravolu
use header ob_start() $temp = website.php?var=.$var; header (Location: $temp); Puru - Original Message - From: Phil Schwarzmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 20, 2002 4:31 PM Subject: [PHP] include() question... Okay, let's say I want to send a user to

[PHP] static not working as expected

2002-06-18 Thread Purushotham Komaravolu
?php class Counter { var $counter = 0; function increment_and_print() { print ++$this-counter; print \n; } } class SingletonCounter { static $m_instance = NULL; // throwing error here

[PHP] Re: [PHP-DEV] static not working as expected

2002-06-18 Thread Purushotham Komaravolu
Thanks for your prompt answer.If that's the case then, how do I define a singleton class? Regards, Puru - Original Message - From: Markus Fischer [EMAIL PROTECTED] To: Purushotham Komaravolu [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, June 18, 2002 10:58 AM

Re: [PHP] synchronize functions

2002-06-18 Thread Purushotham Komaravolu
something similar to the synchronization of functions in java. Onle one thread should be able to access that method. I guess you can use semaphores. Even I am trying to find out how to do it in any other fashion. Thanks in advance, regards, Puru - Original Message - From: Analysis