Ben sonuçtan yararlı bilgi almak için CURL kullanarak elde edilen verileri ayrıştırmak istiyor

0 Cevap php

Güdümlü olarak ben tam ayrıntılı soruyu yineden post ediyorum. Kodun amacı uzak sunucudan sonucu almak ve benim veritabanına depolamak ve sonra benim sunucunun veritabanından kullanıcı tarafından gerektiğinde bunu göstermektir.

i want to retrieve individual sbject and marks from the site.

curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
curl_setopt($request, CURLOPT_POST, true);
curl_setopt($request, CURLOPT_POSTFIELDS, array('rid' => '1kn06cs032','submit' =>   'SUBMIT'));

if(!($result = curl_exec($request)))
    die('curl_exec failed with error: '.curl_error($request));

curl_close($request);

//echo strip_tags($result,'<tr><b><td>') ;
  $s=strip_tags($result,'') ;
//strstr($s,")");
  $t=strstr($s,"(PROVISIONAL)");
   echo $t;
   //$a=explode('Semester:',$t);
   //echo $a[0];
   //echo $a[1];

 ?> 

I ayrıştırma ve php temel bilgi az bilgiye sahip olarak ben hiç şans bt birçok alternatif denedim gibi ben bu vurdu bana bu konuda rehberlik edin.

Yardım çok takdir edilecektir.

Teşekkürler

0 Cevap