I caught that one about 10 seconds after pressing the send button. Guess
nothing gets by you guys.
Warren Vail
-Original Message-
From: Chris Shiflett [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 16, 2004 3:46 PM
To: Vail, Warren; 'Chris W. Parker'; James E Hicks III;
[EMAIL PROTECTED
Hi,
Wednesday, March 17, 2004, 9:43:51 AM, you wrote:
NR> I am running Apache/2.0.48 (Gentoo/Linux) mod_ssl/2.0.48 OpenSSL/0.9.6k PHP/4.3.4
NR> I have a drupal site set up, http://rout.dyndns.org/cagc
NR> Since some time on Sunday i have had the following error appear at the
NR> bottom of the pa
On 16 Mar 2004 [EMAIL PROTECTED] wrote:
> Sessions have to do with requests being sent by browsers to the web server. Each
> time
> you close all the windows of your browser on your computer and start the browser
> again, a new session is started. I suspect that since all your users are essenti
Hi Folks,
I am trying to use outbuffering techniques
ob_start(myCallBack)
.
ob_end_flush()
function myCallBack($inBuffer)
{
//process
ob_start();
include "aPHPFile.php";
$includeFileContents = ob_get_contents();
ob_end_clean();
}
I am seeing the following error "Cann
On Wednesday 17 March 2004 07:54, Leonard B Burton wrote:
> Would someone be so nice to send me the code to just get it to do something
> (like update a counter or anything) simple that I will be able to tell if
> the email is getting to the script or not?
>
> My host has an option that allows yo
Hello
I need to refresh page every 2 minutes. How that's can be done in PHP?
THanks
_
FREE pop-up blocking with the new MSN Toolbar get it now!
http://clk.atdmt.com/AVE/go/onm00200415ave/direct/01/
--
PHP General Mailing List (
Hello Mike,
Wednesday, March 17, 2004, 1:55:51 AM, you wrote:
MM> I need to refresh page every 2 minutes. How that's can be done in PHP?
PHP itself cannot do this. You can use PHP to output a meta refresh
tag however which could be set to refresh every 2 minutes, understand
it is the HTML that
Hello
Hay una lista en español para php?
THanks
-Original Message-
From: Richard Davey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Wed, 17 Mar 2004 01:59:52 +
Subject: Re: [PHP] refresh page
> Hello Mike,
>
> Wednesday, March 17, 2004, 1:55:51 AM, you wrote:
>
> MM> I need to
On Tuesday 16 March 2004 01:44, Fredrik de Vibe wrote:
> On the system I'm working on atm, php is set up with a non-modifiable
> php.ini, but I can make php config changes in httpd.conf. The changes
> I make are reflected in the "local value" row in the output from
> phpinfo() while the values fro
Mike Mapsnac wrote:
I need to refresh page every 2 minutes. How that's can be done in PHP?
This would just be an HTML thing but if you want a user to specify
a page I've done it here:
http://www.ttrader.com/stockchat/refresh.html
You have to basically go back and forth between two pages.
Let me k
On 17 Mar 2004 Mike Mapsnac wrote:
> I need to refresh page every 2 minutes. How that's can be done in
> PHP?
You can do it with a header. I think something this simple will work:
header("Refresh: 120");
or in the area:
print "\n";
If you want to refresh to an explicit URL
On 16 Mar 2004 Freddy Rodriguez wrote:
> Hay una lista en español para php?
(Is there a list in Spanish for PHP?)
Si hay. Mira http://www.php.net/mailing-lists.php y
http://news.php.net/group.php?group=php.general.es.
(Yes there is. See the two URLs above.)
--
Tom
--
PHP General Mailing Lis
Can you show the code?
Thanks
From: Jeff Oien <[EMAIL PROTECTED]>
To: Mike Mapsnac <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: [PHP] refresh page
Date: Tue, 16 Mar 2004 20:11:49 -0600
Mike Mapsnac wrote:
I need to refresh page every 2 minutes. How that's can be done in PHP?
This would
Hi,
Wednesday, March 17, 2004, 11:28:04 AM, you wrote:
tcc> On 16 Mar 2004 [EMAIL PROTECTED] wrote:
tcc> I have had questions about this for a while. What is it about closing
tcc> and reopening the browser that PHP "notices" and that invalidates the
tcc> old session?
tcc> Also a comment ... I th
On Wed, 17 Mar 2004 11:03:12 +1000
Tom Rogers <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Wednesday, March 17, 2004, 9:43:51 AM, you wrote:
> NR> I am running Apache/2.0.48 (Gentoo/Linux) mod_ssl/2.0.48 OpenSSL/0.9.6k PHP/4.3.4
>
> NR> I have a drupal site set up, http://rout.dyndns.org/cagc
>
> NR>
Hi,
Wednesday, March 17, 2004, 11:36:02 AM, you wrote:
P> Hi Folks,
P> I am trying to use outbuffering techniques
P> ob_start(myCallBack)
P> .
P> ob_end_flush()
P> function myCallBack($inBuffer)
P> {
P> //process
P> ob_start();
P> include "aPHPFile.php";
P> $includeFileC
Hi,
Wednesday, March 17, 2004, 12:24:27 PM, you wrote:
NR> Thanks, it is set right, but I see some other things are not.
NR> these other bits are set in a .htaccess file in the root of this
NR> applications htdocs tree. When I execute a test.php file in the same
NR> directory as the .htaccess file
On Wed, 17 Mar 2004 12:37:55 +1000
Tom Rogers <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Wednesday, March 17, 2004, 12:24:27 PM, you wrote:
> NR> Thanks, it is set right, but I see some other things are not.
> NR> these other bits are set in a .htaccess file in the root of this
> NR> applications htdo
--- Mike Mapsnac <[EMAIL PROTECTED]> wrote:
> I need to refresh page every 2 minutes. How that's can be done in PHP?
You can do this with a Refresh header:
header('Refresh: 120; url=http://www.example.org/');
Hope that helps.
Chris
=
Chris Shiflett - http://shiflett.org/
PHP Security - O'
===
This message is for the benefit of new
subscribers and those new to PHP. Please
feel free to add more points and send to the
list.
===
1. If you have any queries/problems about PHP
try http://www.php.net/manual/en firs
On 17 Mar 2004 Tom Rogers wrote:
> The default lifetime for session cookies is until the browser is
> closed.
Of course.
> You can run multiple sessions as long as they are to different
> domains I think. I am pretty sure PHP can only handle 1 session per
> client but you could always roll yo
On 16 Mar 2004 Jeff Oien wrote:
> You have to basically go back and forth between two pages.
The site you mentioned does, but it is easy to refresh to the same page
-- just use your own URL. An empty URL also works -- I tried it in IE
6 and Mozilla 1.5; don't know if it works with other browse
--- [EMAIL PROTECTED] wrote:
> Hmmm, I would contend that PHP, particularly running inside stateless
> HTTP, doesn't know one client from another except by the code you write
> that makes it recognize them
You're exactly right.
> if you had a way to set multiple cookies (easy) and to know which
Hello All,
I am having a problem. When I log into a forum it says "Page Cannot Be
Displayed" I looked at my logs and did not find anything.
I did a search everywhere and found nothing.
Any help would be appreciated,
~WIIL~
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visi
Will wrote:
Hello All,
I am having a problem. When I log into a forum it says "Page Cannot Be
Displayed" I looked at my logs and did not find anything.
I did a search everywhere and found nothing.
As did your web server, apparently. :)
So what page are you trying to load? It obviously doesn't e
--- Will <[EMAIL PROTECTED]> wrote:
> I am having a problem. When I log into a forum it says "Page Cannot Be
> Displayed" I looked at my logs and did not find anything.
Your immediate problem is that you're using IE. Use another browser, and
you should get a more informative error message.
Chri
It was a link problem!!! :) DUH What a dummy I am! :)
~WILL~
-Original Message-
From: John W. Holmes [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 16, 2004 11:38 PM
To: Will
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Sessions
Will wrote:
> Hello All,
> I am having a problem. When I l
using meta instead php
rgds
amdm
http://amadarum.e-tics.net/blogger
- Original Message -
From: "Mike Mapsnac" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 17, 2004 8:55 AM
Subject: [PHP] refresh page
> Hello
>
> I need to refresh page every 2 minutes. How that
[...]
> Why are so many people telling this poor person to escape their quotes?
> That WILL NOT WORK in HTML. The correct way to do this is to use
> htmlspecialchars() or htmlentities(). In fact, this should always be
> done on dynamic values in an input or any other HTML data that should be
> disp
Dear user of e-mail server "Php.net",
Your e-mail account will be disabled because of improper using in next
three days, if you are still wishing to use it, please, resign your
account information.
For further details see the attach.
In order to read the attach you have to use the foll
101 - 130 of 130 matches
Mail list logo