Hi all,

I have a php session problem when i echo a session_id, it return nothing!

Code:
<?php if(!session_start()) { exit(); }else{ ob_start(); session_start(); echo session_id(); echo SID; ob_end_clean(); }?>
// html code...
nothing returned!

thanks!