|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2008-02-10 18:01 UTC] felipe@php.net
  [2008-02-18 01:00 UTC] php-bugs at lists dot php dot net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 12:00:01 2025 UTC | 
Description: ------------ Hi.. Sir i have follwing script for sessions.. <?php session_start(); $u="prince"; $_SESSION['user']="$u"; print "succcess"; ?> Sir even after this session doesnt get registered.. can u resolve why it is so ?? coz when i m checking if session is registerd.. its showing no.. as follows <?php session_start(); if(isset($_SESSION['user'])) { print "$_SESSION[user]"; } else { print "session not registered"; } ?> so.. its showing session not registered.. well i m using widows xp with IIS , mysql and php 4.4.8 thanks.. regards umakant