Kodi Community Forum

Full Version: Stream as m3u8 over php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i have make this code for php, i can read the link but cant play it as m3u8

whats wrong? Can anyone help me
php:
<?php
$url = file_get_contents("http://web.canlitvlive.io/izle/bein-sports-haber.html");
preg_match('#file:"(.*?)"#', $url,$getm3u8);

echo ($getm3u8[1]);
?>
PHP does not invoke external commands upon the output of an echo.
If you want some external program to run, use the system command.

See https://www.php.net/manual/en/function.system.php
it#s run over xaamp

how can i play it whit xaamp