Last active
April 15, 2024 10:41
-
-
Save vanaf1979/8eb244d9c87f0a79fa0d337ebaa9f70b to your computer and use it in GitHub Desktop.
Snippet #007 Get and Post to remote Api with Php. https://since1979.dev/snippet-007-get-and-post-to-remote-api-with-php/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$posts = do_remote_get('https://jsonplaceholder.typicode.com/posts/'); | |
foreach ($posts as $post) { | |
echo "<h2>{$post->title}</h2>"; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment