Not working !
<?php session_start(); ?>
<p class="username"><?php print $_SESSION['name']; ?></p>
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
This will:
|
|||
|
|
|
$_SESSION is an array made available to the current user and its members are referred to as you would any other array. Therefore, using your example, if you have not already defined $_SESSION['name'] then it will not show you anything helpful. Hope that helps. |
|||
|
|
|
You must declare and insert a value into
In your case the result didn't display anything because |
||||
|
|
$_SESSION['name']elsewhere? You should have done that aftersession_startas well. – Jimmy Sawczuk Apr 6 '11 at 13:22$_SESSION['name']with some data? – Karol Piczak Apr 6 '11 at 13:22