WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<?php$url = 'www.paypal.com';$output = '';$fp = fsockopen($url, 80, $errno, $errstr, 30);if (!$fp) { echo "<h1>Fehler</h1>$errstr ($errno)<br />\n";} else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: $url\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { $output .= fgets($fp, 128); } fclose($fp);}echo '<pre>' . $output . '</pre>';?>