konto usunięte
Temat: Jak wyciągnąć tabelę?
CześćMuszę wyciągnąć tabelę z wynikami ze strony http://www.football.ch/afv/de/verein.aspx?v=325. Tabela wyświetla się dopiero po kliknięciu w link 4. Liga FC Niedergoesgen:
Problem w tym, że taki link wykonuje javascript symulujący POST. Tak mi się przynajmniej wydaje:
var theForm = document.forms['ctl00'];
if (!theForm) {
theForm = document.ctl00;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
oraz
<a href="javascript:__doPostBack('ctl01$rpTeams$ctl01$lbTeam','')" id="ctl01_rpTeams_ctl01_lbTeam">4. Liga FC Niedergösgen</a>
Powinienem wyciągnąć to curlem, tylko co wstawić jako trzeci argument dla curl_setopt($ch, CURLOPT_POSTFIELDS, '???'); ?