if (isset($_GET['s'])) { $pesquisa = $_GET['s']; $url = 'https://todanua.net/?s=' . urlencode($pesquisa); $html = file_get_contents($url); $doc = new DOMDocument(); @$doc->loadHTML($html); $resultados = array(); $posts = $doc->getElementsByTagName('article'); foreach ($posts as $post) { $titulo = $post->getElementsByTagName('h2')[0]->nodeValue; $url = $post->getElementsByTagName('a')[0]->getAttribute('href'); $descricao = $post->getElementsByTagName('p')[0]->nodeValue; $resultado = array( 'titulo' => $titulo, 'url' => $url, 'descricao' => $descricao ); array_push($resultados, $resultado); } echo json_encode($resultados); }