Php kullanarak bir dosyanın kaynağını alın

0 Cevap php

I'm trying to get the source of a file using php and the file_get_contents function. The problem is that the website requires a login. I thought that this could be bypassed by logging into the site first and then use the file_get_contents function but this is not the case. The page that the function returns is the login page.

Bu kodu:

<?php

if (isset($_GET['getroster'])){
$file = stripslashes(file_get_contents('https://intranet.hlf.de/custom/cddTUB.asp?show=1'));
print ($file);
}

?>

Bu fonksiyonu çalıştırırken veya url giderken Gördüğünüz gibi, bir açılan listeden bir kullanıcı adı, şifre ve şirket ister.

Is it possible to pass these values to the page by using this or any other php function. Or maybe doing it in a totally different way? Any help would be appreciated!

Selamlar Ron

0 Cevap