[PHP] PLEASE HELP! session variable fails to persist!!

2002-06-14 Thread Zlutarch G.
Hi, My session variables won't persist, could someone help me with this problem? I spent all day trying to figure out what is wrong, and I still don't know why I couldn't get it to work. Here is an example script: ? session_id(); session_start(); header(Pragma: no-cache); header(Refresh: 2);

Re: [PHP] PLEASE HELP! session variable fails to persist!!

2002-06-14 Thread Zlutarch G.
] To: [EMAIL PROTECTED] Subject: Re: [PHP] PLEASE HELP! session variable fails to persist!! Date: Sat, 15 Jun 2002 01:05:47 +0100 On Saturday, June 15, 2002 at 12:53:47 AM, Zlutarch G. wrote: The session ID is the same for a given session, that means the server knows its the same session. And since I

Re: Re[2]: [PHP] PLEASE HELP! session variable fails to persist!!

2002-06-14 Thread Zlutarch G.
From: Stuart Dallas [EMAIL PROTECTED] Reply-To: Stuart Dallas [EMAIL PROTECTED] To: Zlutarch G. [EMAIL PROTECTED] Subject: Re[2]: [PHP] PLEASE HELP! session variable fails to persist!! Date: Sat, 15 Jun 2002 01:32:51 +0100 On Saturday, June 15, 2002 at 1:24:43 AM, you wrote: I tried including a link

Re: Re[4]: [PHP] PLEASE HELP! session variable fails to persist!!

2002-06-14 Thread Zlutarch G.
AM, Zlutarch G. wrote: I tried your script, but I couldn't get it to work. I guess it has to be something wrong with my server configuration? I am using Apache 1.3.14. I am new to Apache, so I don't know what could possibly be the configuration problem. Do you have any ideas? Thanks a lot

[PHP] HELP! Open HTTPS://, and follow rediect header

2002-03-24 Thread Zlutarch G.
Hi All, I need help on two problems: 1) Is there a PHP function similar to fopen() that would open URL begins with https://;, i.e., SSL address? 2) Does anyone know if it is possible in PHP to read redirect instructions in HTTP header, and then follow the links? Thanks in advance, Zlu

[PHP] Apache.exe fails Java

2002-02-16 Thread Zlutarch G.
Hi, I am learning how to use the PHP Java extension. I used the example script/codes found in the PHP Java documentation: ?php // get instance of Java class java.lang.System in PHP $system = new Java('java.lang.System'); // demonstrate property access print 'Java

[PHP] How can I open URL using HTTP POST instead of HTTP GET?

2002-02-10 Thread Zlutarch G.
Hi everyone, PHP fopen function opens URL using the HTTP GET method. But what if one could only open the web page using the HTTP POST method? In this case, fopen won't work. Is there a PHP function that is similar to fopen, but uses HTTP POST method to open URL instead? If not, then how do I

[PHP] Is there a setInterval function in PHP?

2001-08-04 Thread Zlutarch G.
Hi, I couldn't find a similar function in the official documentation. Does anyone know if there is a setInterval function in PHP? i.e., making repeated calls to a function separated by a given time period. Is such a function even possible in PHP? One way to do it, without a PHP function, is to