Php 视图未读取会话或flashdata

Php 视图未读取会话或flashdata,php,codeigniter,session,twitter,Php,Codeigniter,Session,Twitter,正在尝试使用twitter登录。获取屏幕名称并设置为会话和flashdata。当我再次尝试访问view上的会话数据时,我什么也得不到。 查看 <div class="logged-in-user offset9" id="user-navbar" > <img class="img-circle" style="height:46px; width:46px;" src=""/> <a href="./getting-

正在尝试使用twitter登录。获取屏幕名称并设置为会话和flashdata。当我再次尝试访问view上的会话数据时,我什么也得不到。
查看

<div class="logged-in-user offset9" id="user-navbar" >
            <img class="img-circle" style="height:46px; width:46px;" src=""/>
            <a href="./getting-started.html"><?php $this->session->flashdata('twitter_screen_name');?></a>
          </div>
  </div>
你错过了回声

而不是

<?php $this->session->flashdata('twitter_screen_name');?> 

<?php echo $this->session->flashdata('twitter_screen_name');?>

愚蠢的我!谢谢。
<?php echo $this->session->flashdata('twitter_screen_name');?>