Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $Json_File = file_get_contents("content.json");
- $Json_Object = json_decode($Json_File);
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <?php
- echo "<title>" . $Json_Object -> content -> title . "</title>
- <link
- rel = " . $Json_Object -> content -> rel_type . "
- type = " . $Json_Object -> content -> link_type . "
- href = " . $Json_Object -> content -> link_href;
- ?>
- </head>
- <body>
- <h1>
- <?php echo "<img class = 'center' src = " . $Json_Object -> content -> image . "/>"?>
- </h1>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement