>> from the code:
>>
>> > include 'navigationStart3.php4';
>
> Are these indents in the code (changeAlertDetails3.php4 I think)? You
> can't have anything before the , sorted, thanks everyone
J
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/
ailto:[EMAIL PROTECTED]
Sent: Wednesday, December 31, 2003 10:25 AM
To: Vail, Warren; [EMAIL PROTECTED]
Subject: RE: [PHP] Cannot send session cache limiter
> perhaps you could show some code snippets.
Thanks Warren, at least I know my message is getting through :-)
Well, I just got this:
On Wed, 2003-12-31 at 11:24, [EMAIL PROTECTED] wrote:
> > perhaps you could show some code snippets.
>
> Thanks Warren, at least I know my message is getting through :-)
>
> Well, I just got this:
>
> Warning: Cannot send session cookie - headers already sent by (output
> started at /home/sites/
On Wed, 2003-12-31 at 10:59, [EMAIL PROTECTED] wrote:
> Hi
>
> (apologies if you've seen this, but I sent it and it both came back from
> the list server, and it bounced back as a failed email, so I'm going to
> try again)
>
> I'm new to the list, but I've been PHP programming for almost 2 years
> perhaps you could show some code snippets.
Thanks Warren, at least I know my message is getting through :-)
Well, I just got this:
Warning: Cannot send session cookie - headers already sent by (output
started at /home/sites/site191/web/test2/changeAlertDetails3.php4:1) in
/home/sites/site191/w
have you placed echo's on both sides of the session_start to make sure that
is where your error message is coming from;
echo "point 1";
session_start();
echo "point 2";
I am assuming that your send entry is in via the
Is there any thing different about that URL like appended get parameters as
i
Hi JB!
On Wed, 10 Jan 2001, JB wrote:
> actually.. still give me the same error after i fixed that. new code as
> follows along with the error:
>
> if (!session_is_registered('cart')) {
> $cart = array();
> session_register('cart');
> }
> else {
> session_start();
> }
>
> any other ideas? =)
I think you want to do more like this:
session_start();
if (!session_is_registered('cart')){
session_register('cart');
$cart = array();
}
- Original Message -
From: "JB" <[EMAIL PROTECTED]>
Newsgroups: php.general
Sent: Wednesday, January 10, 2001 3:43 PM
Subject: [PHP] Cannot se
8 matches
Mail list logo