-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 817 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Proxy Example</title>
</head>
<body>
<h1>PHP Proxy Example</h1>
<?php
// The URL you want to fetch content from
$url = 'https://api.example.com/data';
// Initialize a cURL session
$ch = curl_init();
// Set the URL
curl_setopt($ch, CURLOPT_URL, $url);
// Return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// Execute the cURL session
$output = curl_exec($ch);
// Close the cURL session
curl_close($ch);
// Output the content
if ($output === FALSE) {
echo "cURL Error: " . curl_error($ch);
} else {
echo $output;
}
?>
</body>
</html>