Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Not working !

<?php session_start(); ?>
<p class="username"><?php print $_SESSION['name']; ?></p>
share|improve this question
I assume you started the Session and set $_SESSION['name'] elsewhere? You should have done that after session_start as well. – Jimmy Sawczuk Apr 6 '11 at 13:22
Did you fill $_SESSION['name'] with some data? – Karol Piczak Apr 6 '11 at 13:22
3  
@Digital: You are asking questions with very short info If you explain your question well you will get better answer – Positive Apr 6 '11 at 13:26
2  
-1: Next time consider putting some effort on your question. Your code is valid and will throw no errors so, the least you could write is the expected behaviour. – acm Apr 6 '11 at 13:26
@andre valid apart from the undefined array index error – dogmatic69 Apr 6 '11 at 13:28
show 5 more comments

closed as not a real question by Matt Whipple, air4x, Nasreddine, Midhun MP, Michael Berkowski Nov 18 '12 at 17:43

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.

3 Answers

up vote 6 down vote accepted

This will:

<?php
    session_start();
    $_SESSION['name'] = 'Hello World!';
?>
<p class="username"><?php print $_SESSION['name']; ?></p>
share|improve this answer

$_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.

share|improve this answer

You must declare and insert a value into $_SESSION['name'], and you can print it as follows:

<?php
    session_start();
    $_SESSION['name'] = 'asht';
?>
<p class="class1"><?php echo $_SESSION['name']; ?></p>

In your case the result didn't display anything because $_SESSION['name'] was empty.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.