it seems in your php.ini you activated error_reporting = E_ALL.
so also notices like yours are reported. either disable this in php.ini like that: error_reporting = E_ALL & ~E_NOTICE or correct your script as the notices say: - seems you used $array[s_UID] instead of correct $array['s_UID'] - and you used a var $s_UserInfo that you didn't define before, add $s_UserInfo = 0 or $s_UserInfo = "" or similar. ciao SVEN "James Stanley" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > Hello, > > I just installed php/mysql on my windows machine, now when I try to run > a script I get this: > > Use of undefined constant s_UID - assumed 's_UID' in > c:\inetpub\wwwroot\php_test\inc\session.php > > And then some Undefined variable: s_UserInfo. > > Any thought why could this be? Thanks. > > James. > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php