bilis_money Posted July 13, 2006 Share Posted July 13, 2006 hi, i'm tired of typing them again and again in piece by piece.so i would like to hear your tricks on how would you go about to print this in one go?I've assigned all the $_session like these below,[code]$_SESSION['s_id'] = $row[id];$_SESSION['s_photo_filename'] = $row[photo_filename];$_SESSION['s_tmp_name'] = $row[tmp_name];$_SESSION['s_type'] = $row[type];$_SESSION['s_size'] = $row[size];$_SESSION['s_path'] = $row[path];$_SESSION['s_date'] = $row[date];$_SESSION['s_comments'] = $row[comments];$_SESSION['s_photo_category'] = $row[photo_category];[/code]now how would i print them on one go? a very short codes trick is much better.Thank you very much in advance.-ok, i'll try to experiment mine while waiting your trick for this. Quote Link to comment https://forums.phpfreaks.com/topic/14478-printing-_session-values-in-one-go/ Share on other sites More sharing options...
hvle Posted July 13, 2006 Share Posted July 13, 2006 print_r($_SESSION);hehe Quote Link to comment https://forums.phpfreaks.com/topic/14478-printing-_session-values-in-one-go/#findComment-57291 Share on other sites More sharing options...
kenrbnsn Posted July 13, 2006 Share Posted July 13, 2006 Use[code]<?php echo '<pre>' . print_r($_SESSION,true) . '</pre>'; ?>[/code]and the dump will be formatted in a much more readable way.Ken Quote Link to comment https://forums.phpfreaks.com/topic/14478-printing-_session-values-in-one-go/#findComment-57294 Share on other sites More sharing options...
bilis_money Posted July 13, 2006 Author Share Posted July 13, 2006 yeah that's what in my mind too, but i'm having slow turtle walk in mybandwidth right now.i guess i can try it later.But thanks anyway. Quote Link to comment https://forums.phpfreaks.com/topic/14478-printing-_session-values-in-one-go/#findComment-57303 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.