Now playing file

Hello Torben ,

Is there a way when i get a one mp3 file of a radio songs , when it is saved via mAirlist , we can get it seen on our website , how must me handle it or is this not possible yet

Goos

You can create a simple PHP script, such as

<?php $string = $_GET['a']; $myFile = "somefile.txt"; $fh = fopen($myFile, 'w') or die("can't open file"); $stringData = $string; fwrite($fh, $stringData); fclose($fh); ?>

In your HTTP GET settings in mAirlist you can set the variable to a in the left field and then %a - %b in the right field. You can just load SomeFile.txt on your website and it should work.

Thanks Will try

Goos