Herzlich willkommen im Archiv vom ABAKUS Online Marketing Forum
Du befindest Dich im Archiv vom ABAKUS Online Marketing Forum. Hier kannst Du Dich für das Forum mit den aktuellen Beiträgen registrieren.
Code: Alles auswählen
$curl = curl_init();
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_URL, "HTTP://DEINEURL.DE");
$xxx = curl_exec($curl);
Code: Alles auswählen
function xyz() {
include(blabla.php);
return $verarbeitet;
}
Code: Alles auswählen
$seite = xyz();
Code: Alles auswählen
print xyz();
Code: Alles auswählen
function xyz($dir, $file) {
chdir($dir);
ob_start();
include($file);
$verarbeitet = ob_get_contents();
ob_end_clean();
return $verarbeitet;
}