It works well on linux means it shows me o/p as 'Manisha' but on local
Win2kserver, it gives error.

I tried to make use of error_reporting(0); in second.php but then screen
becomes blank, it does not show me the output as "Manisha"

manisha



"Evan Nemerson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Your Linux server probably has error_reporting set to 0, which is usually
a
> good idea for production environments. To supress the error messages
without
> modifying your php.ini, do error_reporting(0). Take a look in your php.ini
> file- the error_reporting directive will have lots of comments around it
> explaining the concept thoroughly.
>
>
> On Sunday 26 October 2003 01:06 am, Manisha Sathe wrote:
> > I am trying to use session but it seems it does not work on win2k
server,
> > the same runs on linux.
> >
> > following is my first php
> > -------------------
> > <?
> > session_start();
> > $_SESSION["name"]= "Manisha";
> > ?>
> > ----------------------
> > following is the second php
> >
> > <?
> > session_start();
> > echo $_SESSION["name"];
> > ?>
> >
> > -----------------
> >
> > but it is always giving me following error msg
> >
> > Notice: Undefined index: name in C:\Project Codes\www\testPHP\second.php
on
> > line 6
> >
> > ----------------------------
> >
> > The same thing works well on live Linux server. I checked php.ini
options
> > such as session enable / register global etc - both r same. Please help
> > me. Is it a problem with win2k server or did i miss out any thing in
> > php.ini ?
> >
> > Regards
> > Manisha
>
> --
> Evan Nemerson
> [EMAIL PROTECTED]
>
> --
> "The people are the only sure reliance for preservation of our liberty."
>
> -Thomas Jefferson

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

Reply via email to