I'm using cURL to get page source. It works great, but when I use
echo '<pre>';
print_r($source);
echo '</pre>';
to display as text only, the page gets parsed and I end up seeing it as a webpage instead of plain text.
How can I view the remote page as text only?