Jump to content

json_decode outputs array that I want into html tables


RobMichaelson

Recommended Posts

Hello

I have been working really hard on getting an API (184.173.18.228/api/profile/1000/0/Adam.Adams) to display anything and it worked with $json_output = json_decode($json);

<?php
$url = "http://184.173.18.228/api/profile/1000/0/Adam.Adams";
$json = file_get_contents($url, 0, null, null);
$json_output = json_decode($json);
echo '<pre>';
print_r("query results:");
print_r($json_output);
'</pre>';
$obj = array('section', 'fname', 'lname');
var_dump($obj)
?>

 

when I uploaded the php file and view it in browser - it looked like an array ( a lot more than displayed here)-

stdClass Object

(

[ProfileSections] => Array

(

[0] => stdClass Object

(

[sectionType] => ContactCard

[sections] => Array

(

[0] => stdClass Object

(

[ContentType] => ProfileBio

[Title] =>

[Description] =>

my next quest is to get this array into html that I can style -

I am soooo stuck - do I save the array as a file then call the file to display? can take this output before it gets displayed in the browser with stylized output?

thanks

Rob

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.