Embed Audio in URL Field -
I am trying to play a audio file in a zoho view -This works If I do it manually
I am using a CURL to add data to creator
myURL = ("http://mysite.com/admin/recordings.php?recording_id=") + input.recID2; // I use this to pass recording ID in
input.link = myURL; // If I post this into a single box it adds the correct URL
myURL2 = "data:text/html,<audio src=" + myURL + "controls>" + myURL; // Trying to add audio controls here
input.Url = "<a " + myURL2 + "</a>";
If I can get
to populate URL field IT works in Chrome , I tried it manually , FireFox loads player but does not play , I think I disabled it .
Need suggestion on how to properly build my string and input