Posts
 
Reputation
Joined
Last Seen
Ranked #2K
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 #621
Ranked #44.2K
Ranked #4K
~663 People Reached
About Me

Avid Web Developer with a love for all things code

Interests
pool, bowling, the outdoors, code, code and more code
PC Specs
macbook pro
Favorite Forums
Favorite Tags
php x 4

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
239
Member Avatar for Borderline

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
190
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
234

The End.