sandy1028 Posted July 19, 2007 Share Posted July 19, 2007 Hi, When the print $text_line[0] the output will be abc xyz hjhj uiui jhjh in this form How to list the name in the order abc xyz hjhj etc I need to display these in the tree format $lines = file('./data.txt'); foreach ($lines as $line) { $text_line = explode(":" , $line); echo "$text_line[0]"; } Link to comment https://forums.phpfreaks.com/topic/60741-list-data/ Share on other sites More sharing options...
vbnullchar Posted July 19, 2007 Share Posted July 19, 2007 <?php $lines = file('./data.txt'); foreach ($lines as $line) { $text_line = explode(":" , $line); echo "$text_line[0]<br>"; } ?> Link to comment https://forums.phpfreaks.com/topic/60741-list-data/#findComment-302166 Share on other sites More sharing options...
sandy1028 Posted July 19, 2007 Author Share Posted July 19, 2007 Thanks for the quick reply Link to comment https://forums.phpfreaks.com/topic/60741-list-data/#findComment-302173 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.