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]"; } Quote Link to comment 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>"; } ?> Quote Link to comment Share on other sites More sharing options...
sandy1028 Posted July 19, 2007 Author Share Posted July 19, 2007 Thanks for the quick reply Quote Link to comment 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.