php - Stream audio files from my home computer to my website -
Hello! I have some questions about a website that I am creating for which audio files are required after referencing my SQL database after echoing my HTML using my HTML. To get started, my page has an audio control tag with a PHP echo inside it, such as: The variable $ file is the same as the audio file the user wants to play after filling out a selected form on a separate page, which has been pulled from my database: table values (null, "track01.mp3"); (NULL, "track02.mp3"); (NULL, "track03.mp3"); (NULL, "track04.mp3"); Therefore, if the user chooses the first track from the selected form, then HTML looks like this: Everything works by this point My audio is completely recovering and the php / mysql code works great Used to be; The problem I am facing is that I'm going to have more than 5 gigabytes of audio in my database, which I can not put on my web server due to the disk space limit, I thought, "I wan...