----- Original Message ----- 
From: "Robert Cummings" <[EMAIL PROTECTED]>
To: "Aaron Koning" <[EMAIL PROTECTED]>
Cc: "PHP-General" <php-general@lists.php.net>
Sent: Saturday, December 10, 2005 3:07 AM
Subject: Re: [PHP] simple-ish question but something i never knew


> On Sat, 2005-12-10 at 03:01, Aaron Koning wrote:
> > My experience was with the Location keyword, it might work better with
the
> > Redirect keyword in the header function. I stopped using header and
Location
> > after a few problems and <meta> has never failed for me. MHO.
>

> What kind of problems did you have? I've never experience a problem with
> the location header, but would be interested to know of any gotchas that
> I've just been fortunate enough to miss over the years.

I do not think that using meta is better than header but  header has one
problem ( but in my view it is  feature) normally.
for eaxample:

<?php
session_start();

$_SESSION['somevar']="anything";
header("location:url");
?>


In this script  session variable will not be set and will not available on
other
pages, because sessions also works with headers and headers executed (sent)
in
reverse order.
Am I correct?

Aaron, you was having problems with sessions na ?

Zareef Ahmed



>
> Cheers,
> Rob.
> -- 
> .------------------------------------------------------------.
> | InterJinn Application Framework - http://www.interjinn.com |
> :------------------------------------------------------------:
> | An application and templating framework for PHP. Boasting  |
> | a powerful, scalable system for accessing system services  |
> | such as forms, properties, sessions, and caches. InterJinn |
> | also provides an extremely flexible architecture for       |
> | creating re-usable components quickly and easily.          |
> `------------------------------------------------------------'
>
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

====================================================
PHP Expert Consultancy in Development  http://www.indiaphp.com
Yahoo! : consultant_php MSN : [EMAIL PROTECTED]

>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to