Posts by Welder Andrade Serute • 5 points
3 posts
-
0
votes1
answer559
viewsQ: Pick variable from another page
I have this loadChannels.php page with code: <?php session_start(); header("Access-Control-Allow-Origin: *"); /* Captura a página */ if (isset($_GET['page'])) { $page = (int)$_GET['page']; } else…
-
0
votes0
answers70
viewsQ: function preg_match_all
I have that function: preg_match_all('/(tvg-logo="(?<logo>.*?)".+group-title="(?<name>.*?)".+\n(?P<link>http?:\/\/.+))/', $response, $channels, PREG_SET_ORDER); She scans a m3u8…
phpasked Welder Andrade Serute 5 -
0
votes1
answer187
viewsQ: Infinite scroll no foreach
Could someone help me? I’m trying to find some way to use Infinite scroll in this code: <?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "lista.m3u8"); curl_setopt($ch, CURLOPT_USERAGENT,…