Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
2 Endorsements
Ranked #622
Ranked #44.2K
Ranked #4K
~685 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for raminshahab

For the array posted you would do... foreach($json_info as $key=>$value){ //use "\n" instead of "<br />" if printing in console echo $key."<br />"; //data /* each value is an array so need to use the index, otherwise it'll just print 'Array' */ foreach($value as $k=>$v) echo $k." :: ".$v[0]."<br />"; …

Member Avatar for raminshahab
0
246
Member Avatar for Member #321605

As @zagga suggested, put your code in the body to see it on the page, otherwise you won't see anything on the page... look at the browser tab to see your changes in the <title> element. cheers!

Member Avatar for jsuna
0
200
Member Avatar for Priti_P

Try... if(count($skills_1)) { foreach($skills_1 as $i=>$skills) { echo '<tr>'; foreach($skills as $key=>$skilldata) echo '<td>'.$skilldata.'</td>'; echo '</tr>'; } } Hope it helps!

Member Avatar for jsuna
0
239

The End.