sandy1028 Posted July 19, 2007 Share Posted July 19, 2007 Hi, How to display the list of names in tree format. Under Name all the names should be displayed. <?php $lines = file('./data.txt'); echo " <div style=\"position:absolute; left:12px;\"><font face=\"Arial\" color=\"#A41325\" size=\"3\"></font></div>"; echo "<ul id=\"containerul\" type=\"circle\"><li>Name</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[0]</li></ul>"; } echo "<ul id=\"containerul\" type=\"circle\"><li>Address</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[1]</li></ul>"; } echo "<ul id=\"containerul\" type=\"circle\"><li>Age</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[2]</li></ul>"; } echo "<ul id=\"containerul\" type=\"circle\"><li>Email</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[3]</li></ul>"; } echo "<ul id=\"containerul\" type=\"circle\"><li>Mobile</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[4]</li></ul>"; } echo "<ul id=\"containerul\" type=\"circle\"><li>Residence Number</li></ul>"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<ul type=\"square\"><li>$text_line[5]</li></ul>"; }?> Quote Link to comment Share on other sites More sharing options...
JasonLewis Posted July 19, 2007 Share Posted July 19, 2007 here, i did the first for you... echo "<ul id=\"containerul\" type=\"circle\"><li>Name</li>"; echo "<ul type=\"square\">"; foreach ($lines as $line) { $text_line = explode(":" , $line); echo "<li>$text_line[0]</li>"; } echo "</ul></ul>"; i think that should do it... hopefully. 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.