I am completely new to api. I want to display the plain text response of the output of this:
https://vurl.com/api.php?url=https://google.com
to my webpage html but it’s not working.
My code:
JavaScript
x
9
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
2
<script>
3
4
$url = urlencode('https://google.com');
5
$api_url = 'vurl.com/api.php?url='.$url;
6
$arr_output = json_decode(file_get_contents($api_url), true);
7
document.write($arr_output);
8
</script>
9
Thanks
Advertisement
Answer
Not really sure why you’re mixing javascript
with your php
code. Nevertheless, this is the approach you should follow:
JavaScript
1
13
13
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
2
<script>
3
4
<?php
5
$url = urlencode("https://google.com");
6
$api_url = "vurl.com/api.php?url=".$url;
7
$arr_output = json_decode(file_get_contents($api_url), true);
8
9
echo $arr_output;
10
?>
11
12
</script>
13