aashcool198 Posted May 31, 2009 Share Posted May 31, 2009 This code prints skills in hierarchical form means Parent skill its child skill its child skill its child skill Parent skill its child skill its child skill its child skill . . . . . so on.. Now the list can be any long. Now i want to insert one parent and its children on a specified place in my html page. basically i want one set to be shown in one column of html table and other set in next column. Can i use $html = file_get_contents("test.html"); $replaceThis = array( '{NAME}', '{JS}'); $replaceWith = array( $name,'<script language="JavaScript" >') $html = str_replace($replaceThis, $replaceWith, $html); echo $html; if yes then how for this dynamically changing content. <?php $conn = mysql_connect('localhost', 'root', '') or die(mysql_error()); mysql_select_db('Sumeru Skills', $conn); $result = mysql_query("SELECT * FROM person_skills"); while($row = mysql_fetch_array($result)) { $skill_id = $row['skill_id']; $result2 = mysql_query("SELECT * FROM skills where skill_id = $skill_id && parent = 'm'"); while ($row2 = mysql_fetch_array($result2)){ echo $row2['skill']." ".$row['lev_exp']."</br>"; } $result1 = mysql_query("SELECT * FROM skills where parent = $skill_id"); while ($row1 = mysql_fetch_array($result1)){ echo $row1['skill']."</br>"; } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/160333-print-php-script-result-in-html-page/ Share on other sites More sharing options...
Garethp Posted May 31, 2009 Share Posted May 31, 2009 Try it, then come back if you have a problem Quote Link to comment https://forums.phpfreaks.com/topic/160333-print-php-script-result-in-html-page/#findComment-846076 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.