DEV Community

BANIYA MANI TEJA
BANIYA MANI TEJA

Posted on • Updated on

Scrape any website Using PHP code

Im Scraping MT manager Website.

<?php

curl.php

// Initialize a connection with cURL (ch = cURL handle, or "channel")
$ch = curl_init();

// Set the URL
curl_setopt($ch, CURLOPT_URL, 'http://mtmanager.co');

// Set the HTTP method
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');

// Return the response instead of printing it out
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

// Send the request and store the result in $response
$response = curl_exec($ch);

echo 'HTTP Status Code: ' . curl_getinfo($ch, CURLINFO_HTTP_CODE) . PHP_EOL;
echo 'Response Body: ' . $response . PHP_EOL;

// Close cURL resource to free up system resources
curl_close($ch);

Top comments (1)

Collapse
 
andersbjorkland profile image
Anders Björkland

The fun starts when you parse the response 😉